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

14 lines
337 B
HTML

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