blob: 76f55e15f7d47897a83a490a27a48aca205d1b70 (
plain) (
tree)
|
|
{{- define "category_index" -}}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/static/style.css" />
<title>{{ .category_name }}</title>
</head>
<body class="category-index">
<div class="padding-wrapper">
<h1>
Repos in {{ .category_name }}
</h1>
<ul>
{{- range .repos }}
<li>
<a href="repos/{{ . }}/">{{ . }}</a>
</li>
{{- end }}
</ul>
</div>
</body>
</html>
{{- end -}}
|