mirror of
https://github.com/carsonip/hugo-theme-minos
synced 2025-12-30 03:19:49 -08:00
21 lines
593 B
HTML
21 lines
593 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>
|