hugo-theme-next/layouts/_default/list.html

8 lines
348 B
HTML
Raw Normal View History

{{- if and .Page.IsSection (eq .Section "archives") }}
2022-07-26 22:18:43 +08:00
{{- $paginator := (.Paginate (where .Page.Site.RegularPages "Section" "in" .Site.Params.mainSections) ).Pages.GroupByDate "2006" }}
{{ partial "list.html" $paginator }}
{{ else }}
{{- $paginator := .Paginator.Pages.GroupByDate "2006" }}
{{ partial "list.html" $paginator }}
{{- end }}