danfunk 47fbe48704 Adding Clarity to track webpage usage
Re-arange homepage
Improved cookie consent
Reintroduce Newsletter sing-up
2023-09-21 15:51:46 -04:00

30 lines
1023 B
HTML

{{- $section1 := .Site.Params.section1 }}
{{- $title := index $section1 "title" }}
{{- $subtitle := index $section1 "subtitle" }}
{{- $image := index $section1 "image" }}
{{- $buttonText := index $section1 "buttontext" }}
{{- $buttonLink := index $section1 "buttonlink" }}
<section class="section section-feature-grey is-medium" id="section3">
<div class="container">
<div class="columns">
<div class="column is-10 is-offset-1">
<div class="has-text-centered">
<img class="pushed-image" src="{{ printf "/images/%s" $image | relURL }}">
</div>
</div>
</div>
<div class="title-wrapper has-text-centered">
<h2 class="title is-2">{{ $title }}</h2>
<h3 class="subtitle is-5 is-muted">{{ $subtitle }}</h3>
</div>
<p class="has-text-centered mt-20">
<a href="{{ $buttonLink }}">
<span class="button signup-button rounded secondary-btn raised">
{{ $buttonText }}
</span>
</a>
</p>
</div>
</section>