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

8 lines
347 B
HTML
Raw Normal View History

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