mirror of
https://github.com/sartography/spiffworkflow_website.git
synced 2025-02-24 13:28:29 +00:00
New features page - would be good to add the videos back in at some point (backed up as features2) Improved support page
16 lines
423 B
HTML
16 lines
423 B
HTML
{{- $title := .Get "title" -}}
|
|
{{- $icon := .Get "icon" -}}
|
|
{{- $action := .Get "action" -}}
|
|
|
|
<div class="feature-card is-bordered has-text-centered revealOnScroll delay-1" data-animation="fadeInLeft">
|
|
<div class="card-title">
|
|
<h4>{{ $title }}</h4>
|
|
</div>
|
|
<div class="card-icon">
|
|
<img src="/images/features/icons/{{ $icon }}.svg">
|
|
</div>
|
|
<div class="card-text">
|
|
{{ .Inner | markdownify }}
|
|
</div>
|
|
</div>
|