You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

funfacts.html 1.0KB

12345678910111213141516171819202122232425
  1. {{ $data := index site.Data site.Language.Lang }}
  2. {{ if $data.funfacts.funfacts.enable }}
  3. {{ with $data.funfacts.funfacts }}
  4. {{"<!-- Start Counter Section -->" | safeHTML}}
  5. <section id="counter" class="parallax-section bg-1 section overly" style='background-image: url("{{ .bg_image_webp | absURL }}")'>
  6. <!-- this image is for trigger this section fallback background image -->
  7. <img class="lozad" style="display: none;" onerror="this.onerror=null;this.parentElement.style.backgroundImage= 'url({{ .bg_image | absURL }})'" data-src="{{ .bg_image_webp | absURL }}" />
  8. <div class="container">
  9. <div class="row justify-content-center">
  10. {{ range .counter_item }}
  11. <div class="col-lg-3 col-md-6 col-12 text-center wow fadeInDown" data-wow-duration="500ms">
  12. <div class="counters-item">
  13. <i class="{{ .icon }}"></i>
  14. <span class="count" data-count="{{ .count }}">0</span>
  15. <h3>{{ .title | markdownify }}</h3>
  16. </div>
  17. </div>
  18. {{ end }}
  19. </div>
  20. </div>
  21. </section>
  22. {{"<!-- /Counter Section -->" | safeHTML}}
  23. {{ end }}
  24. {{ end }}