templates/front/main/zones/itemZoneSection.html.twig line 1

Open in your IDE?
  1. <div class="col-md-6 col-lg-3">
  2.     <div class="exp-card">
  3.         <div class="icon-box">
  4.             {% if key == 0 %}
  5.                 <i class="bi bi-headset"></i>
  6.             {% elseif key==1 %}
  7.                 <i class="bi bi-patch-check"></i>
  8.             {% elseif key==2 %}
  9.                 <i class="bi bi-compass"></i>
  10.             {% elseif key==3 %}
  11.                 <i class="bi bi-shield-check"></i>
  12.             {% endif %}
  13.         </div>
  14.         <h5>{{ section.title }}</h5>
  15.         <p>{{ section.content }}</p>
  16.     </div>
  17. </div>