templates/front/prodPhotCol.html.twig line 1

Open in your IDE?
  1. <div class="col-sm-6 may-0-sm may-15">
  2.     {% if img %}
  3.         {% include "front/prodBigPhot.html.twig" with {'title':title, "img":img, "id":id, "active":1} %}
  4.     {% endif %}
  5.     {% for key, productPhoto in productPhotos %}
  6.         {% if productPhoto.productMediaFile %}
  7.             {% 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)} %}
  8.         {% endif %}
  9.     {% endfor %}
  10.     <div class="d-flex cg-15 rg-15 mat-15">
  11.         {% if img %}
  12.             {% include "front/prodSmallPhot.html.twig" with {'title':title, "img":img, "id":id, "active":1} %}
  13.         {% endif %}
  14.         {% for key, productPhoto in productPhotos %}
  15.             {% if productPhoto.productMediaFile %}
  16.                 {% 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)} %}
  17.             {% endif %}
  18.         {% endfor %}
  19.     </div>
  20. </div>