1
Files
2025/themes/2026/layouts/section.html
2026-02-21 01:50:39 +01:00

14 lines
353 B
HTML

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