-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
62 lines (62 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>FrozenBlock - Home</title>
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<header>
<!-- Generated header -->
</header>
<section>
<div id="home">
<div>
<img style="width: 100%" src="/assets/frozenblock/textures/title.png" alt="FrozenBlock Modding Oasis">
<p><strong>A COOL QUOTE SHOULD BE HERE</strong></p>
</div>
</div>
<div id="slideshow-0">
<!-- Generated Mod list -->
<div class="below">
<!-- TODO: Fix cursor when hovering between the list and next/prev buttons -->
<a>
<img class="prev" onclick="increase(0, -1)" src="/assets/frozenblock/textures/icons/prev.png" alt="<">
</a>
<ul>
<!-- TODO: Make this look good on mobile -->
<!-- Generated list selector -->
</ul>
<a>
<img class="next" onclick="increase(0, 1)" src="/assets/frozenblock/textures/icons/next.png" alt=">">
</a>
</div>
</div>
<div style="height: 20px"></div>
<div id="slideshow-1">
<!-- Generated Mod list -->
<div class="below">
<!-- TODO: Fix cursor when hovering between the list and next/prev buttons -->
<a>
<img class="prev" onclick="increase(1, -1)" src="/assets/frozenblock/textures/icons/prev.png" alt="<">
</a>
<ul>
<!-- TODO: Make this look good on mobile -->
<!-- Generated list selector -->
</ul>
<a>
<img class="next" onclick="increase(1, 1)" src="/assets/frozenblock/textures/icons/next.png" alt=">">
</a>
</div>
</div>
<script src="/js/main.team.js"></script>
<script src="/js/main.mods.js"></script>
<div style="height: 20px"></div>
<script src="/js/index.js"></script>
</section>
<footer>
<!-- Generated Footer -->
</footer>
</body>
<script src="/js/decorator.js"></script>
</html>