templates/frontend-eforum/_partials/modules/aboutUsFacts.html.twig line 1

Open in your IDE?
  1. <section class="aboutUsFacts">
  2.     <div class="container">
  3.         {% if module.title is defined %}
  4.             <div class="row">
  5.                 <div class="col col-xs-12">
  6.                     <h2 class="aboutUsFacts__title">{{ module.title }}</h2>
  7.                 </div>
  8.             </div>
  9.         {% endif %}
  10.         {% if module.items is defined %}
  11.             <div class="row">
  12.                 {% for item in module.items %}
  13.                     <div class="col-md-4 col-sm-12 aboutUsFacts__col">
  14.                         <div class="aboutUsFacts__item">
  15.                             <div class="aboutUsFacts__wrap">
  16.                                 {% if item.title is defined %}
  17.                                     <h3 class="aboutUsFacts__itemTitle">
  18.                                         {{ item.title }}
  19.                                     </h3>
  20.                                 {% endif %}
  21.                                 {% if item.number is defined %}
  22.                                     <div class="aboutUsFacts__counting counting"
  23.                                          data-counting="{{ item.number }}"
  24.                                          id="couting{{ loop.index }}"
  25.                                     >
  26.                                         0
  27.                                     </div>
  28.                                 {% endif %}
  29.                                 {% if item.description is defined %}
  30.                                     <div class="aboutUsFacts__description">
  31.                                         {{ item.description }}
  32.                                     </div>
  33.                                 {% endif %}
  34.                             </div>
  35.                         </div>
  36.                     </div>
  37.                 {% endfor %}
  38.             </div>
  39.         {% endif %}
  40.     </div>
  41. </section>