danfunk d1930dd955 Dropping the articles in individual "products" - we want people talking to us about one product.
New features page - would be good to add the videos back in at some point (backed up as features2)

Improved support page
2023-09-26 17:28:23 -04:00

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>