hugo-theme-anubis2/layouts/index.html

16 lines
427 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">
2021-12-23 19:56:08 +01:00
{{ $pages := where (where site.RegularPages "Type" "in" site.Params.mainSections) "Params.hidden" "!=" true }}
{{ 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
2024-04-09 14:03:09 +02:00
{{ end }}