16 lines
482 B
HTML
16 lines
482 B
HTML
<section id="hero" class="section section--hero">
|
|
<div class="section__container" >
|
|
<div class="section__content section__content--hero" >
|
|
{{ with .Site.Params.hero }}
|
|
{{ with .headline }}<h1>{{ . }}</h1>{{ end }}
|
|
{{ with .subheadline }}<h2>{{ . }}</h2>{{ end }}
|
|
{{ with .subsubheadline }}<h3>{{ . }}</h3>{{ end }}
|
|
{{ with .divider }}<hr>{{ end }}
|
|
{{ range .lines }}
|
|
<h4> {{ . }}</h4>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</section>
|