2017-04-05 00:24:28 -07:00
|
|
|
<section id="hero" class="section section--hero">
|
|
|
|
<div class="section__container" >
|
|
|
|
<div class="section__content section__content--hero" >
|
2017-03-04 20:02:56 -08:00
|
|
|
{{ with .Site.Params.hero }}
|
2017-03-04 08:12:31 -08:00
|
|
|
{{ with .headline }}<h1>{{ . }}</h1>{{ end }}
|
|
|
|
{{ with .subheadline }}<h2>{{ . }}</h2>{{ end }}
|
|
|
|
{{ with .subsubheadline }}<h3>{{ . }}</h3>{{ end }}
|
2017-03-04 20:02:56 -08:00
|
|
|
{{ with .divider }}<hr>{{ end }}
|
2017-03-04 08:12:31 -08:00
|
|
|
{{ range .lines }}
|
2017-03-29 20:56:45 -07:00
|
|
|
<h4> {{ . }}</h4>
|
2017-03-04 08:12:31 -08:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2017-04-05 00:24:28 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-03-04 08:12:31 -08:00
|
|
|
</section>
|