1
0
Files
Eric Taylor 9a313c53a8 Move theme from subrepo into the main repo
the theme is customized for this site so having it
as a sub repo dosent make sense
2025-12-24 11:05:37 -05:00

21 lines
596 B
HTML

{{ partial "head.html" . }}
<body>
<div id="container">
{{ partial "header.html" . }}
<section id="main" class="outer">
<section class="archives-wrap">
<div class="archive-category-wrap">
<span class="archive-category">{{ .Title }}</span>
</div>
<div class="archives">
{{- range .Paginator.Pages }}
{{ partial "li.html" . }}
{{- end -}}
</div></section>
{{ partial "pagination.html" . }}
</section>
{{ partial "footer.html" . }}
</div>
</body>
</html>