hugo-theme-next/layouts/index.html
2022-06-03 22:37:33 +08:00

8 lines
322 B
HTML

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