Licitator 1.0
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

5 years ago
  1. {% block counters %}
  2. <div class="text-center">
  3. <div class="container">
  4. <div class="row appear stats" id="stats_appear">
  5. {% for key, statsBlock in statsBlockS %}
  6. <div class="col-xs-12 col-sm-6 col-md-3">
  7. <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;">
  8. <div class="service-box" id="stats-container-{{ key }}">
  9. <!-- <div class="icon"><img src="/sites/default/files/img/archivements/grey/5.png" /></div> -->
  10. <strong class="number" id="counter-{{ key }}">{{ statsBlock.count}}</strong><br>
  11. <div class="service-desc">
  12. <p>
  13. {{ statsBlock.findTranslation(app.request.locale, 'text')}}
  14. </p>
  15. </div>
  16. </div>
  17. </div>
  18. </div>
  19. {% endfor %}
  20. </div>
  21. </div>
  22. </div>
  23. {% endblock %}