mirror of
https://github.com/sartography/spiffworkflow_website.git
synced 2025-02-24 13:28:29 +00:00
34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
{{- $section4 := .Site.Params.section4 }}
|
|
{{- $title := index $section4 "title" }}
|
|
{{- $subtitle := index $section4 "subtitle" }}
|
|
{{- $clients := index $section4 "clients" }}
|
|
<section class="section is-medium section-secondary" id="section4">
|
|
<div class="container">
|
|
|
|
<div class="title-wrapper has-text-centered">
|
|
<h2 class="title is-2 light-text is-spaced">{{ $title }}</h2>
|
|
{{- with $subtitle }}
|
|
<h3 class="subtitle is-5 light-text">{{ . }}</h3>
|
|
{{- end }}
|
|
</div>
|
|
|
|
<div class="content-wrapper">
|
|
<div class="columns is-vcentered">
|
|
{{- range $clients }}
|
|
<div class="column is-4">
|
|
<figure class="testimonial">
|
|
<blockquote>
|
|
{{ .quote }}
|
|
</blockquote>
|
|
<div class="author">
|
|
<img src="{{ printf "/images/illustrations/faces/%s.png" (string .img) | relURL }}" alt=""/>
|
|
<h5>{{ .name }}</h5>
|
|
<span>{{ .job }}</span>
|
|
</div>
|
|
</figure>
|
|
</div>
|
|
{{- end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section> |