mirror of
https://github.com/sartography/spiffworkflow_website.git
synced 2025-02-24 05:18:19 +00:00
* Updated SVG's to allow styling * Added background images to our support and features pages * Allow individual styling of pages
30 lines
1021 B
HTML
30 lines
1021 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 primary-btn raised">
|
|
{{ $buttonText }}
|
|
</span>
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</section> |