-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (91 loc) · 3.39 KB
/
index.html
File metadata and controls
94 lines (91 loc) · 3.39 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/home.css">
<link rel="stylesheet" href="css/main.css">
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
<title>Retro Defense Wiki</title>
</head>
<body>
<header>
<img src="img/banner.png" alt="Retro Defense Banner" class="banner">
<div class="play-rd-container">
<a href="https://www.roblox.com/games/6947076261" target="_blank" class="play-rd-btn">Play Retro Defense
></a>
</div>
</header>
<nav>
<ul>
<li><button id="toggle-aside" class="toggle-aside-btn">☰</button></li>
<li><a href="index.html" class="selected">Home</a></li>
|
<li><a href="towers.html">Towers</a></li>
|
<li><a href="enemies.html">Enemies</a></li>
|
<li><a href="#">Maps</a></li>
|
<li><a href="#">Modes</a></li>
|
<li><a href="modifiers.html">Modifiers</a></li>
|
<li><a href="codes.html">Codes</a></li>
|
<li><a href="updatelog.html">Update Log</a></li>
</ul>
</nav>
<main>
<aside id="aside-section">
<h3>Browse</h3>
<ul>
<li><a href="#">Most Popular</a></li>
</ul>
<div class="theme-switch-container">
<h3>Dark Theme</h3><br>
<label class="switch">
<input type="checkbox" id="toggle-theme">
<span class="slider round"></span>
</label>
</div>
<div class="aside-footer">
<small>Maintained by the community<br>
<a target="_blank" href="https://github.com/RetroDefense/wiki/blob/main/CONTRIBUTING.md">Help improve it</a>
</small>
</div>
</aside>
<section>
<h2>Most Popular</h2>
<br>
<div class="games-grid">
<a href="towers.html" class="game-card">
<img src="img/frontpage/towers.png" alt="Towers">
<p><strong>Towers</strong></p>
</a>
<a href="enemies.html" class="game-card">
<img src="img/frontpage/enemies.png" alt="Enemies">
<p><strong>Enemies</strong></p>
</a>
<a href="#" class="game-card">
<img src="img/frontpage/maps.png" alt="Maps">
<p><strong>Maps</strong></p>
</a>
<a href="#" class="game-card">
<img src="img/frontpage/modes.png" alt="Modes">
<p><strong>Modes</strong></p>
</a>
<a href="codes.html" class="game-card">
<img src="img/frontpage/codes.png" alt="Codes">
<p><strong>Codes</strong></p>
</a>
<a href="updatelog.html" class="game-card">
<img src="img/frontpage/updateLog.png" alt="Update Log">
<p><strong>Update Log</strong></p>
</a>
</div>
<script src="./js/main.js"></script>
</section>
</main>
</body>
</html>