hugo-theme-next/layouts/_default/section.html
2023-01-01 21:12:58 +08:00

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 }}