2018-08-04 13:24:03 +02:00
|
|
|
{{- $section1 := .Site.Params.section1 }}
|
|
|
|
|
{{- $title := index $section1 "title" }}
|
|
|
|
|
{{- $subtitle := index $section1 "subtitle" }}
|
|
|
|
|
{{- $tiles := index $section1 "tiles" }}
|
2018-08-04 12:47:06 +02:00
|
|
|
<section class="section section-feature-grey is-medium">
|
2018-08-04 13:24:03 +02:00
|
|
|
<div class="container">
|
|
|
|
|
<div class="title-wrapper has-text-centered">
|
|
|
|
|
<h2 class="title is-2">{{ $title }}</h2>
|
|
|
|
|
<h3 class="subtitle is-5 is-muted">{{ $subtitle }}</h3>
|
|
|
|
|
<div class="divider is-centered"></div>
|
|
|
|
|
</div>
|
2018-08-04 12:47:06 +02:00
|
|
|
|
2018-08-04 13:24:03 +02:00
|
|
|
<div class="content-wrapper">
|
|
|
|
|
<div class="columns">
|
|
|
|
|
{{- range $tiles }}
|
|
|
|
|
<div class="column is-one-third">
|
|
|
|
|
<div class="feature-card is-bordered has-text-centered revealOnScroll delay-1" data-animation="fadeInLeft">
|
|
|
|
|
<div class="card-title">
|
|
|
|
|
<h4>{{ .title }}</h4>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-icon">
|
|
|
|
|
<img src="{{ printf "/images/illustrations/icons/%s.svg" .icon | relURL }}">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-text">
|
|
|
|
|
<p>{{ .text }}</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-action">
|
2018-08-13 10:13:55 -07:00
|
|
|
<a href="{{ .url }}" class="button btn-align-md accent-btn raised">{{ .buttonText }}</a>
|
2018-08-04 12:47:06 +02:00
|
|
|
</div>
|
2018-08-04 13:24:03 +02:00
|
|
|
</div>
|
2018-08-04 12:47:06 +02:00
|
|
|
</div>
|
2018-08-04 13:24:03 +02:00
|
|
|
{{- end }}
|
|
|
|
|
</div>
|
2018-08-04 12:47:06 +02:00
|
|
|
</div>
|
2018-08-04 13:24:03 +02:00
|
|
|
</div>
|
2018-08-04 12:47:06 +02:00
|
|
|
</section>
|