<div class="col-sm-6 may-0-sm may-15">
{% if img %}
{% include "front/prodBigPhot.html.twig" with {'title':title, "img":img, "id":id, "active":1} %}
{% endif %}
{% for key, productPhoto in productPhotos %}
{% if productPhoto.productMediaFile %}
{% include "front/prodBigPhot.html.twig" with {'title':productPhoto.title, "img":asset(vich_uploader_asset(productPhoto, 'productMediaFile'))|imagine_filter('medium'), "id":productPhoto.id, "active":(loop.first and not img)} %}
{% endif %}
{% endfor %}
<div class="d-flex cg-15 rg-15 mat-15">
{% if img %}
{% include "front/prodSmallPhot.html.twig" with {'title':title, "img":img, "id":id, "active":1} %}
{% endif %}
{% for key, productPhoto in productPhotos %}
{% if productPhoto.productMediaFile %}
{% include "front/prodSmallPhot.html.twig" with {'title':productPhoto.title, "img":asset(vich_uploader_asset(productPhoto, 'productMediaFile'))|imagine_filter('medium'), "id":productPhoto.id, "active":(loop.first and not img)} %}
{% endif %}
{% endfor %}
</div>
</div>