2022-06-02 12:13:16 +08:00
|
|
|
{{- define "main_class" }}index{{- end }}
|
2022-05-21 17:47:26 +08:00
|
|
|
{{- define "main" }}
|
2022-06-02 12:13:16 +08:00
|
|
|
{{/* TODO IsHome */}}
|
|
|
|
{{- print "Get IsHome value from scratch before paginate: " (.Scratch.Get "IsHome") }}
|
2022-06-01 17:06:27 +08:00
|
|
|
{{ $paginator := .Paginate (where .Site.RegularPages "Section" "in" .Site.Params.mainSections) }}
|
|
|
|
{{- range $paginator.Pages }}
|
2022-06-02 12:13:16 +08:00
|
|
|
{{ partial "post_content.html" . }}
|
2022-05-31 17:10:01 +08:00
|
|
|
{{- end }}
|
2022-06-01 21:01:15 +08:00
|
|
|
{{- partial "partials/pagination.html" . }}
|
2022-05-21 17:47:26 +08:00
|
|
|
{{- end }}
|