2017-03-20 20:23:38 +01:00
|
|
|
{{ "<!-- REASONS -->" | safeHTML }}
|
2017-03-20 13:37:30 +01:00
|
|
|
<section id="reasons">
|
|
|
|
{{ with .Site.Params.reasons.headline }}
|
2017-03-16 00:00:56 +01:00
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12 text-center">
|
|
|
|
<h2 class="section-heading">{{ . }}</h2>
|
|
|
|
<hr class="primary">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2017-03-20 13:37:30 +01:00
|
|
|
{{ range .Site.Params.reasons.list }}
|
2017-03-16 00:00:56 +01:00
|
|
|
<div class="col-lg-3 col-md-6 text-center">
|
|
|
|
<div class="service-box">
|
|
|
|
<i class="fa fa-4x {{ .icon }} wow bounceIn text-primary"></i>
|
|
|
|
<h3>{{ .title }}</h3>
|
|
|
|
{{ with .description }}
|
|
|
|
<p class="text-muted">{{ . }}</p>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|