2022-06-07 18:16:40 +08:00
|
|
|
{{- define "title" }}
|
2022-08-10 22:07:03 +08:00
|
|
|
{{- .Params.Title | default (T .Section) | default .Section }} - {{ .Site.Title -}}
|
2022-06-07 18:16:40 +08:00
|
|
|
{{- end -}}
|
2022-07-30 17:39:57 +08:00
|
|
|
{{ define "main_inner_class" }}index posts-expand{{ end }}
|
|
|
|
|
2022-06-07 18:16:40 +08:00
|
|
|
{{- define "main" }}
|
2022-06-08 14:51:30 +08:00
|
|
|
|
2022-07-30 17:39:57 +08:00
|
|
|
{{ $paginator := .Paginate (where .Site.RegularPages "Section" "==" .Section) }}
|
|
|
|
{{- range $paginator.Pages }}
|
|
|
|
{{ partial "post.html" (dict "ctx" . "IsHome" true) }}
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{- partial "partials/pagination.html" . }}
|
|
|
|
|
2022-06-07 18:16:40 +08:00
|
|
|
{{- end }}
|