blob: 78d403ef0834c65b9c21f25b8a0aab005e7c1a32 (
plain) (
blame)
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
|
<!doctype html>
<html>
<head>
<meta charset="utf-8" lang="en"/>
<title>Interactive Tiers</title>
<link rel="stylesheet" href="/tiers.css">
<script src="/tiers.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="title">
<h1 class="title-label">My TierList</h1>
</div>
<a href="https://github.com/pinapelz/interactive-tierlist" class="gh-link">GitHub</a>
<section class="main-content">
<div class="tierlist"></div>
<div class="toggleable-container">
<div class="bottom-container">
<div class="buttons-container">
</div>
</div>
</div>
</section>
<div id="image-modal" class="modal">
<div class="modal-content">
<span class="close"></span>
<img id="modal-img" src="" alt="Image preview" />
<input id="modal-title" type="text" placeholder="Title" readonly />
<textarea id="modal-description" placeholder="Description" readonly></textarea>
</div>
</div>
</body>
</html>
|