Files
hugo-theme-minos-custom/layouts/_default/list.html
2019-11-29 23:04:51 +08: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>