Replaced webp backgrounds with jpg's because couldn't figure out how to use Modernizr (detect webp support for CSS fallback) for Hugo. Also added back testimonial section with leader testimonials.
20 lines
803 B
HTML
20 lines
803 B
HTML
{{ if .Site.Params.counter.enable }}
|
|
{{"<!-- Start Counter Section -->" | safeHTML}}
|
|
<section id="counter" class="bg-1 section overly" style='background-image: url("{{ .Site.Params.counter.bgImage | absURL }}")'>
|
|
<div class="container">
|
|
<div class="row">
|
|
{{ range .Site.Params.counter.counterItem }}
|
|
<div class="col-lg-3 col-md-6 col-12 text-center wow fadeInDown" data-wow-duration="500ms">
|
|
<div class="counters-item">
|
|
<i class="{{ .icon }}"></i>
|
|
<span data-speed="3000" data-to="{{ .count }}">{{ .count }}</span>
|
|
<h3>{{ .title }}</h3>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{"<!-- /Counter Section -->" | safeHTML}}
|
|
{{ end }}
|