-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (76 loc) · 3.31 KB
/
index.html
File metadata and controls
87 lines (76 loc) · 3.31 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
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/cdn/pico.min.css">
<link rel="icon" href="/cdn/icon.ico">
<title>Parapass</title>
</head>
<body>
<main class="container-fluid">
<nav>
<li><img alt="Home" src="cdn/icon.png" width=64 height=64 /></li>
<ul>
<li><a href="/" class="secondary">Home</a></li>
<li><a href="/about" class="secondary">About Me</a></li>
<li><a href="/sabers" class="secondary">PC Sabers</a></li>
<li><a href="/quest" class="secondary">Quest Sabers</a></li>
<li><a href="/parapacks" class="secondary">ParaPacks</a></li>
</ul>
</nav>
<h1>Home</h1>
</main>
<main class="container">
<section>
<a href="/sabers" role="button">PC Sabers</a>
<a href="/quest" role="button">Quest Sabers</a>
<a href="/renders" role="button">Renders</a>
</section>
<section>
<h2>Featured Downloads</h2>
<table>
<thead>
<tr>
<th scope="col">Saber Name</th>
<th scope="col">Platform</th>
<th scope="col">Image</th>
<th scope="col">Download</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"><i>MC-01 Mercury</i></th>
<td>PC, Quest</td>
<td><img alt="MC-01 Mercury" src="/cdn/saberimgs/mercury.png" width="128" height="128"></td>
<td><a href="/cdn/sabers/Mercury.saber" role=button class="outline">Download</a></td>
<td><a href="/cdn/sabers/quest/MC_01-_Mercury.qsaber" role=button class="contrast outline">Quest Download</a></td>
</tr>
<tr>
<th scope="row">pInverted</th>
<td>PC, Quest</td>
<td><img alt="pInverted" src="/cdn/saberimgs/inverted.png" width="128" height="128"></td>
<td><a href="/cdn/sabers/Parapass_pInverted.saber" role=button class="outline">Download</a></td>
<td><a href="/cdn/sabers/quest/pInverted.whacker" role=button class="contrast outline">Quest Download</a></td>
</tr>
<tr>
<th scope="row">pRing v3</th>
<td>PC, Quest</td>
<td><img alt="pRing v3" src="/cdn/saberimgs/ring3.png" width="128" height="128"></td>
<td><a href="/cdn/sabers/Parapass_pRing v3.saber" role=button class="outline">Download</a></td>
<td><a href="/cdn/sabers/quest/pRing v3.whacker" role=button class="contrast outline">Quest Download</a></td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Projects</h2>
<a href="/projects/msbrowser" role="button">ModelSaber Browser</a>
<a href="/projects/sscli" role="button">ScoreSaber CLI</a>
<a href="https://hitbloq.com/ranked_list/based" role="button">HitBloq Playlist</a>
</section>
<h2>Donate</h2>
<a href="https://patreon.com/parapass" role="button">Patreon</a>
</main>
</body>
</html>