Files
hugo-fresh/layouts/partials/section3.html

28 lines
974 B
HTML
Raw Permalink Normal View History

2018-08-04 14:18:24 +02:00
{{- $section3 := .Site.Params.section3 }}
{{- $title := index $section3 "title" }}
{{- $subtitle := index $section3 "subtitle" }}
{{- $image := index $section3 "image" }}
{{- $buttonText := index $section3 "buttontext" }}
{{- $buttonLink := index $section3 "buttonlink" }}
2018-08-04 12:47:06 +02:00
<section class="section section-feature-grey is-medium">
<div class="container">
<div class="columns">
<div class="column is-10 is-offset-1">
<div class="has-text-centered">
2018-08-04 14:18:24 +02:00
<img class="pushed-image" src="{{ printf "/images/%s" $image | relURL }}">
2018-08-04 12:47:06 +02:00
</div>
</div>
</div>
<div class="title-wrapper has-text-centered">
2018-08-04 14:18:24 +02:00
<h2 class="title is-2">{{ $title }}</h2>
<h3 class="subtitle is-5 is-muted">{{ $subtitle }}</h3>
2018-08-04 12:47:06 +02:00
</div>
<p class="has-text-centered mt-20">
2018-08-04 14:18:24 +02:00
<a class="button cta is-large rounded secondary-btn raised" href="{{ $buttonLink }}">
{{ $buttonText }}
2018-08-04 12:47:06 +02:00
</a>
</p>
</div>
</section>