blob: 79e3cba281ebef4c1d228974356b9442a0c40f83 (
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
|
{{- define "index" -}}
<!DOCTYPE html>
<html>
<head>
{{ template "head_common" . }}
<title>Categories – Lindenii Forge</title>
</head>
<body class="index">
<div class="padding-wrapper">
<h1>
Categories
</h1>
<ul>
{{- range .categories }}
<li>
<a href="g/{{ . }}/repos/">{{ . }}</a>
</li>
{{- end }}
</ul>
</div>
</body>
</html>
{{- end -}}
|