aboutsummaryrefslogblamecommitdiff
path: root/templates/category_index.html
blob: 7f206a45960359435211370c74793c1e45015d0d (plain) (tree)
1
2
3
4
5
6


                               
              
                                              
                                                                          














                                                                                    

           
{{- define "category_index" -}}
<!DOCTYPE html>
<html>
	<head>
		{{ template "head_common" . }}
		<title>{{ .category_name }} &ndash; Lindenii Forge</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 -}}