14 lines
353 B
HTML
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 }}
|