-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 839 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zig Central</title>
<link rel="stylesheet" href="/static/simple.min.css">
</head>
<body>
<header>
<nav>
<a href="/" class="current">Home</a>
<a href="/post">Add Package</a>
</nav>
<h1>Zig Central (unofficial)</h1>
</header>
<main>
<h1>All packages</h1>
{{ range .Pkgs }}
<article>
<p><a href="/pkg/{{ .ID }}">{{ .URL }}</a></p>
</article>
{{ end }}
</main>
<footer>
<p>(c) 2023 star-tek-mb. <a href="https://github.com/star-tek-mb/zig-central">Source code</a></p>
</footer>
</body>
</html>