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