Files
hugo-theme-minos-custom/layouts/_default/list.html
2017-02-19 11:40:23 +01:00

19 lines
545 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 .Data.Pages }}
{{ partial "li.html" . }}
{{ end }}
</div></section>
</section>
{{ partial "footer.html" . }}
</div>
</body>
</html>