15 lines
428 B
HTML
15 lines
428 B
HTML
{{ define "title" }}
|
|
{{ .Params.Title | default (T .Section) | default .Section }} - {{ .Site.Title }}
|
|
{{ end }}
|
|
{{ define "main_inner_class" }}index posts-expand{{ end }}
|
|
|
|
{{ define "main" }}
|
|
|
|
{{ $paginator := .Paginate (where .Site.RegularPages "Section" "==" .Section) }}
|
|
{{ range $paginator.Pages }}
|
|
{{ partial "post.html" (dict "ctx" . "IsHome" true) }}
|
|
{{ end }}
|
|
|
|
{{ partial "partials/pagination.html" . }}
|
|
|
|
{{ end }} |