10 lines
403 B
HTML
10 lines
403 B
HTML
{{- define "main_class" }}index{{- end }}
|
|
{{- define "main" }}
|
|
{{/* TODO IsHome */}}
|
|
{{- print "Get IsHome value from scratch before paginate: " (.Scratch.Get "IsHome") }}
|
|
{{ $paginator := .Paginate (where .Site.RegularPages "Section" "in" .Site.Params.mainSections) }}
|
|
{{- range $paginator.Pages }}
|
|
{{ partial "post_content.html" . }}
|
|
{{- end }}
|
|
{{- partial "partials/pagination.html" . }}
|
|
{{- end }} |