mirror of
https://github.com/BioArchLinux/hugo-theme-archbio.git
synced 2025-03-10 12:02:42 +00:00
25 lines
741 B
HTML
25 lines
741 B
HTML
{{ partial "head" . }} {{ partial "header" . }}
|
|
|
|
<div id="container">
|
|
<div class="outer">
|
|
<section id="main">
|
|
<section class="archives-wrap">
|
|
<div class="archive-category-wrap">
|
|
<span class="archive-category">{{ .Title }}</span>
|
|
</div>
|
|
<div class="archives">
|
|
{{ $paginator := .Paginate .Data.Pages }}
|
|
{{ range $paginator.Pages }}
|
|
{{ .Render "summary" }}
|
|
{{ end }}
|
|
</div>
|
|
</section>
|
|
{{ partial "pagination" . }}
|
|
</section>
|
|
{{ partial "sidebar" . }}
|
|
</div>
|
|
</div>
|
|
|
|
{{ partial "footer" . }}
|
|
</body>
|
|
</html>
|