-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
51 lines (44 loc) · 1.16 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Purdue Hackers Webring</title>
<link rel="icon" href="/static/PurdueHackers.svg" />
<link rel="stylesheet" href="/static/style.css" />
</head>
<body>
<h1> Purdue Hackers Web Ring </h1>
<p>
This is a <a href="https://en.wikipedia.org/wiki/Webring">web ring</a>
for the members (and friends) of the
<a href="https://purduehackers.com">Purdue Hackers club</a>.
</p>
<p>
Powered by
<a href="https://github.com/purduehackers/webring">our fork of go-webring</a>.
<!-- based on -->
<!-- <a href="https://git.sr.ht/~amolith/go-webring">amolith's go-webring</a>. -->
</p>
<h2>Websites in ring</h2>
<div class="tablecontainer">
<table>
<thead>
<tr>
<th>Member</th>
<th>Site link</th>
</tr>
</thead>
<tbody>
{{ . }}
</tbody>
</table>
</div>
<footer>
Style inspired by
<a href="http://bettermotherfuckingwebsite.com">http://bettermotherfuckingwebsite.com</a>.
</footer>
<div id="bgcover"></div>
</body>
</html>
<!-- vim: set noet : -->