1
Files
2025/themes/2026/layouts/section.html
2026-04-05 15:07:52 +02:00

14 lines
385 B
HTML

{{ define "main" }}
{{ partial "hero.html" . }}
<main class="listing-page listing-mode-spotlight">
{{- $pages := .RegularPagesRecursive.ByDate.Reverse -}}
{{ with .Content }}
<article>
{{ partial "rendered-content.html" $ }}
</article>
{{ end }}
{{ partial "list-layout.html" (dict "Pages" $pages "Context" . "Site" .Site "SpotlightTitle" .Title) }}
</main>
{{ end }}