9 lines
348 B
HTML
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>
|