uci-hugo-landingpage/layouts/partials/hero.html

16 lines
481 B
HTML
Raw Normal View History

<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 }}
{{ 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 }}
{{ range .lines }}
2017-03-29 20:56:45 -07:00
<h4> {{ . }}</h4>
{{ end }}
{{ end }}
</div>
</div>
</section>