Files
caldwell/layouts/partials/components/hero/index.html
2025-09-13 21:36:59 +00:00

9 lines
348 B
HTML

<section class="hero">
<h1 class="title">{{ .Title }}</h1>
{{ partial "components/meta/index.html" . }}
{{ $hero := partial "components/hero/process.html" .Params.hero }}
{{ $data := partial "components/image/process.html" (dict "page" .Page "src" $hero.src) }}
{{ partial "components/image/index.html" (merge $data $hero) }}
</section>