{{ define "main" }}

{{ if eq .Parent (.GetPage "/") }} {{ T "list.section" }} {{ else }} {{ .Parent.Title }} {{ end }}

{{ T "list.page" (len .Pages) }}

{{ .Title }}

{{ with .Params.description }}

{{ . }}

{{ end }}
{{- $image := partial "helper/image" (dict "Image" .Params.image "Resources" .Resources "Context" .) -}} {{ if $image }}
{{ partial "helper/thumbnail-image" (dict "Resource" $image.Resource "Width" 60 "Height" 60 "Resize" .Site.Params.ImageProcessing.Thumbnail.Enabled "Attributes" (dict "src" $image.Permalink "alt" .Title "loading" "lazy" "width" $image.Width "height" $image.Height ) ) }}
{{ end }}
{{- $pages := partial "helper/pages.html" . -}} {{- $subsections := .Sections -}} {{- if and (eq (len $pages) (len $subsections)) (eq $pages $subsections) -}} {{- $subsections = slice -}} {{- end -}} {{- with $subsections -}} {{- end -}} {{/* List only pages that are not a subsection */}} {{ $paginator := partial "helper/paginator.html" . }} {{ with $paginator }}
{{ range .Pages }} {{ partial "article-list/compact" . }} {{ end }}
{{ end }} {{- partial "pagination.html" . -}} {{ partialCached "footer/footer" . }} {{ end }} {{ define "right-sidebar" }} {{ partial "sidebar/right.html" (dict "Context" . "Scope" "homepage") }} {{ end }}