aboutsummaryrefslogblamecommitdiff
path: root/templates/category_index.html
blob: 1ae0c6477b3521a54f164bbc0bdc821bbc8c7f40 (plain) (tree)



















                                                  
{{- define "category_index" -}}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/static/style.css" />
<title>{{ .category_name }}</title>
</head>
<body class="index">
<div class="padding-wrapper">
<ul>
{{- range .repos }}
<li>
<a href="repos/{{ . }}/">{{ . }}</a>
</li>
{{- end }}
</ul>
</div>
</body>
</html>
{{- end -}}