aboutsummaryrefslogblamecommitdiff
path: root/templates/category_index.html
blob: cd5e95c6d2d70edccc8dd53b039b87daf4297f0c (plain) (tree)
1
2
3


                               

















                                                                                    

           
{{- 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 -}}