hugo-theme-anubis2/layouts/index.html

12 lines
317 B
HTML
Raw Normal View History

2020-01-12 07:51:51 +01:00
{{ define "main" }}
2020-05-07 21:02:59 +02:00
<div class="homepage-content">
{{ .Content }}
</div>
2020-02-15 20:26:47 +01:00
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
{{ range (.Paginate $pages).Pages }}
2020-06-06 21:05:21 +02:00
{{ partial "postSummary.html" . }}
2020-01-12 07:51:51 +01:00
{{ end }}
{{ partial "pagination.html" . }}
{{ end }}