hugo-theme-next/layouts/index.html

11 lines
338 B
HTML
Raw Normal View History

2022-06-07 18:16:40 +08:00
{{- 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.html" (dict "ctx" . "IsHome" true) }}
{{- end }}
2022-06-01 21:01:15 +08:00
{{- partial "partials/pagination.html" . }}
{{- end }}