Files
2026-08-18 15:32:41 +02:00

13 lines
577 B
HTML

{{ define "main" }}
{{ $schauplaetze := where site.RegularPages "Section" "schauplaetze" }}
<section class="op-detail-hero op-hero-home uk-section uk-section-small">
<div class="uk-container uk-container-expand">
<h1 class="uk-margin-remove">{{ with .Params.heroTitle }}{{ . | safeHTML }}{{ else }}{{ site.Title }}{{ end }}</h1>
{{ with .Params.heroLead }}<p class="uk-text-lead uk-margin-small-top uk-margin-remove-bottom uk-width-2-3@l">{{ . }}</p>{{ end }}
</div>
</section>
{{ partial "explorer.html" (dict "pages" $schauplaetze) }}
{{ end }}