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.
23 lines
1.1 KiB
23 lines
1.1 KiB
{% block counters %}
|
|
<div class="text-center">
|
|
<div class="container">
|
|
<div class="row appear stats" id="stats_appear">
|
|
{% for key, statsBlock in statsBlockS %}
|
|
<div class="col-xs-12 col-sm-6 col-md-3">
|
|
<div class="wow fadeInRight animated" data-wow-delay="0.2s" style="visibility: visible;-webkit-animation-delay: 0.2s; -moz-animation-delay: 0.2s; animation-delay: 0.2s;">
|
|
<div class="service-box" id="stats-container-{{ key }}">
|
|
<!-- <div class="icon"><img src="/sites/default/files/img/archivements/grey/5.png" /></div> -->
|
|
<strong class="number" id="counter-{{ key }}">{{ statsBlock.count}}</strong><br>
|
|
<div class="service-desc">
|
|
<p>
|
|
{{ statsBlock.findTranslation(app.request.locale, 'text')}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|