hugo-theme-anubis2/layouts/index.html

14 lines
383 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>
<div class="articles h-feed">
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
{{ range (.Paginate $pages).Pages }}
2021-07-09 18:00:52 +02:00
{{ partial "post-summary.html" . }}
{{ end }}
{{ partial "pagination.html" . }}
</div>
2020-01-12 07:51:51 +01:00
{{ end }}