2023-08-17 16:25:45 -04:00

30 lines
1.1 KiB
HTML

{{- $section3 := .Site.Params.section3 }}
{{- $title := index $section3 "title" }}
{{- $subtitle := index $section3 "subtitle" }}
{{- $image := index $section3 "image" }}
{{- $buttonText := index $section3 "buttontext" }}
{{- $buttonLink := index $section3 "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="" onclick="Calendly.initPopupWidget({url: 'https://calendly.com/dan-sartography/60min'});return false;">
<span class="button signup-button rounded secondary-btn raised">
Schedule Demo
</span>
</a>
</p>
</div>
</section>