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
19 lines
801 B
{{ if .Site.Params.counter.enable }}
|
|
{{"<!-- Start Counter Section -->" | safeHTML}}
|
|
<section id="stats" 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 }}
|