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

Open in your IDE?
  1. <section class="parent-container three-photos container-fluid bg-grey">
  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-sm-4 px-0 {{ index != 2 ? 'd-none d-sm-block' }}">
  7.                     <div class="zoom {{ index == 1 ? 'mb-90'}}">
  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>