Files
hugo-theme-minos-custom/layouts/taxonomy/tag.html
Andrew Lyu c2de392b51 Fix layouts
2019-01-16 01:10:52 +08:00

21 lines
592 B
HTML

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