forked from skyblock-wiki/skyblock-wiki.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (78 loc) · 3.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hypixel SkyBlock Wiki Tools</title>
<!-- Preloads -->
<link rel="preload" href="/styles/styles.css" as="style" />
<link rel="preload" href="/files/images/wiki-icon.png" as="image" />
<link rel="modulepreload" href="./scripts/index.js" as="script" />
<link rel="modulepreload" href="./scripts/load-contributors.js" as="script" />
<!-- Styles -->
<link rel="stylesheet" href="/styles/styles.css" />
<link rel="icon" href="/files/images/wiki-icon.png" />
<!-- Scripts -->
<script src="./scripts/index.js" type="module"></script>
<script src="./scripts/load-contributors.js" type="module"></script>
<script src="./scripts/load-tools.js" type="module"></script>
<script src="./scripts/load-downloads.js" type="module"></script>
<script src="./scripts/check-for-hover.js" type="module"></script>
</head>
<body>
<header>
<div class="logo">
<img src="/files/images/wiki-icon.png" alt="logo" />
<span>
<p class="name">Hypixel SkyBlock Wiki Tools</p>
<p class="name-short">HSW Tools</p>
<span class="version">v1.1</span>
</span>
</div>
<nav>
<a href="#" class="link">Home</a>
<a href="#tools" class="link">Tools</a>
<a href="#downloads" class="link">Downloads</a>
<a href="https://github.com/skyblock-wiki/skyblock-wiki.github.io" class="link" target="_blank">GitHub</a>
<a href="https://hypixel-skyblock.fandom.com/wiki/" class="link" target="_blank">Wiki Site</a>
</nav>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</header>
<main>
<section class="home"></section>
<section class="tools">
<h1 id="tools">Tools and Links</h1>
<ul></ul>
</section>
<section class="downloads">
<h1 id="downloads">Downloads</h1>
<ul></ul>
</section>
<section class="contributors">
<h1 id="contributors">Contributors</h1>
<ul></ul>
</section>
</main>
<footer>
<div class="github-button-wrapper">
<a href="https://github.com/skyblock-wiki/skyblock-wiki.github.io" target="_blank">
<div class="icon"><i class="fas fa-code"></i></div>
<span>View Code</span>
</a>
<a href="https://github.com/skyblock-wiki/skyblock-wiki.github.io/issues" target="_blank">
<div class="icon"><i class="fas fa-bug"></i></div>
<span>Report Bug</span>
</a>
<a href="https://github.com/skyblock-wiki/skyblock-wiki.github.io/pulls" target="_blank">
<div class="icon"><i class="fas fa-code-branch"></i></div>
<span>Contribute</span>
</a>
</div>
</footer>
</body>
</html>