2023-01-01 21:12:58 +08:00
|
|
|
{{ define "main_inner_class" }}index posts-expand{{ end }}
|
2022-07-30 17:39:57 +08:00
|
|
|
|
2023-01-01 21:12:58 +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) }}
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ range $paginator.Pages }}
|
2022-07-30 17:39:57 +08:00
|
|
|
{{ partial "post.html" (dict "ctx" . "IsHome" true) }}
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ end }}
|
2022-07-30 17:39:57 +08:00
|
|
|
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ partial "partials/pagination.html" . }}
|
|
|
|
{{ end }}
|