11 lines
331 B
HTML
11 lines
331 B
HTML
{{ 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 }}
|
|
|
|
{{ partial "partials/pagination.html" . }}
|
|
{{ end }} |