Lindenii Project Forge
/templates/index.html (raw)
{{- 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 -}}