templates/front/blocks/block-six-graphic.twig line 1

Open in your IDE?
  1. <section class="parent-container container-fluid  px-120 py-5">
  2.     <div class="row">
  3.         {% for index, value  in entity.layoutSettings.graphic|default([]) %}
  4.             {% if value != '' %}
  5.                 {% set graphic = entity.layoutSettings.graphic is defined ? custom_get_image(value) : null %}
  6.                 <div class="col-xl-2 col-lg-4 col-sm-6 col-12 mb-3 mb-xl-0">
  7.                     <div class="zoom">
  8.                         <img src="{{ graphic is not null ? (CONST_IMAGE_URL ~ graphic.fileName)|imagine_filter('full') }}" alt="">
  9.                     </div>
  10.                 </div>
  11.             {% else %}
  12.             {% endif %}
  13.         {% endfor %}
  14.     </div>
  15. </section>