hugo-theme-next/layouts/index.html
2022-06-07 18:16:40 +08:00

8 lines
339 B
HTML

{{- define "main_inner_class" }}index posts-expand{{- end }}
{{- define "main" }}
{{ $paginator := .Paginate (where .Site.RegularPages "Section" "in" .Site.Params.mainSections) }}
{{- range $paginator.Pages }}
{{ partial "post/index.html" (dict "ctx" . "IsHome" true) }}
{{- end }}
{{- partial "partials/pagination.html" . }}
{{- end }}