15 lines
373 B
HTML
15 lines
373 B
HTML
<section id="hero">
|
|
<div class="text" >
|
|
{{ 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 }}
|
|
<h5> {{ . }}</h5>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
</section>
|