peruna/layouts/_default/list.html

11 lines
327 B
HTML

{{ partial "header.html" . }}
<h2 class="c-title p-tag-title">{{ .Title }}</h2>
{{ range $index, $page := (.Paginate (where .Data.Pages "Type" "posts")).Pages }}
{{ if ne $index 0 }}
{{ end }}
{{ .Render "li" }}
{{ end }}
{{ partial "pagination.html" .Paginator }}
{{ partial "siteinfo.html" . }}
{{ partial "footer.html" . }}