2022-06-07 18:16:40 +08:00
|
|
|
{{- define "main_inner_class" }}index posts-expand{{- end }}
|
2022-07-30 17:39:57 +08:00
|
|
|
|
2022-05-21 17:47:26 +08:00
|
|
|
{{- define "main" }}
|
2022-07-30 17:39:57 +08:00
|
|
|
|
2022-06-01 17:06:27 +08:00
|
|
|
{{ $paginator := .Paginate (where .Site.RegularPages "Section" "in" .Site.Params.mainSections) }}
|
|
|
|
{{- range $paginator.Pages }}
|
2022-07-30 17:39:57 +08:00
|
|
|
{{ partial "post.html" (dict "ctx" . "IsHome" true) }}
|
2022-05-31 17:10:01 +08:00
|
|
|
{{- end }}
|
2022-07-30 17:39:57 +08:00
|
|
|
|
2022-06-01 21:01:15 +08:00
|
|
|
{{- partial "partials/pagination.html" . }}
|
2022-05-21 17:47:26 +08:00
|
|
|
{{- end }}
|