Site for my Call of Duty: Mobile clan. http://codm.ataraxy.tk
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.

19 lines
801 B

4 years ago
  1. {{ if .Site.Params.counter.enable }}
  2. {{"<!-- Start Counter Section -->" | safeHTML}}
  3. <section id="stats" class="bg-1 section overly" style='background-image: url("{{ .Site.Params.counter.bgImage | absURL }}")'>
  4. <div class="container">
  5. <div class="row">
  6. {{ range .Site.Params.counter.counterItem }}
  7. <div class="col-lg-3 col-md-6 col-12 text-center wow fadeInDown" data-wow-duration="500ms">
  8. <div class="counters-item">
  9. <i class="{{ .icon }}"></i>
  10. <span data-speed="3000" data-to="{{ .count }}">{{ .count }}</span>
  11. <h3>{{ .title }}</h3>
  12. </div>
  13. </div>
  14. {{ end }}
  15. </div>
  16. </div>
  17. </section>
  18. {{"<!-- /Counter Section -->" | safeHTML}}
  19. {{ end }}