hugo-theme-more-contentful/layouts/_default/list.html

21 lines
650 B
HTML
Raw Normal View History

{{ define "main" }}
<hr>
{{ .Content }}
{{- /* The homepage should show only pages from the given sections (with `$.Site.Params.mainSections`).
Otherwise, we take the pages of a section. */ -}}
{{- $pages := .Pages }}
{{- if .IsHome }}
2020-11-05 05:54:38 +00:00
{{- $pages = where $.Site.RegularPages "Type" "in" $.Site.Params.mainSections }}
{{- end }}
2020-11-06 10:19:33 +00:00
{{- range (.Paginate $pages).Pages }}
<article class="post">
2020-11-05 05:54:38 +00:00
<h1><a href="{{ .Permalink }}" aria-label="{{ .Title }}">{{ .Title }}</a></h1>
{{ partial "partials/components/post-meta.html" . }}
</article>
{{- end }}
{{- partial "pagination.html" (dict "Paginator" .Paginator "activeNumberOfPages" 2) }}
{{- end }}