blob: 139abb02d0d3e43df27884b78ce97a14c0180803 (
plain) (
tree)
|
|
{{- 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="{{ . }}/repos/">{{ . }}</a>
</li>
{{- end }}
</ul>
</div>
</body>
</html>
{{- end -}}
|