templates/front/catalog/product/view/assets.html.twig line 1

Open in your IDE?
  1. <div class="pictures-ctn">
  2. <div class="scene">
  3. {% include 'front/modules/wishlist/bt.html.twig' %}
  4. {% if product.pictures|length > 0 %}
  5. <div class="pictures">
  6. {% for picture in product.pictures %}
  7. <a {% if loop.first %}class="on" {% endif %} data-fancybox="products-assets" data-src="{{ asset(picture.webPath) | imagine_filter('product_zoom') }}"><img src="{{ asset(picture.webPath) | imagine_filter('product_large') }}" width="400" height="400" alt="{{ picture.alt?picture.alt:product.name }}"></a>
  8. {% endfor %}
  9. </div>
  10. {% endif %}
  11. <div class="flags">
  12. {% if product.isMadeInFrance() %}
  13. <div class="flag origin made-in-france">
  14. <img src="{{ asset('img/pictos/cocarde.svg') }}" alt="Made in France">
  15. <span>{% trans %}Fabriqué<br>en France{% endtrans %}</span>
  16. </div>
  17. {% endif %}
  18. {% if product.guaranty %}
  19. <div class="flag guaranty">
  20. <img src="{{ asset('img/pictos/check.svg') }}" alt="Made in France">
  21. <span>
  22. {% trans %}Garantie{% endtrans %}
  23. {# {% if product.guaranty matches '/^\\d+$/' %}#}
  24. {{ product.guaranty }} {% trans %}an{% endtrans %}{% if product.guaranty > 1 %}s{% endif %}
  25. {# {% else %}
  26. {% trans %}{{ product.guaranty }}{% endtrans %}
  27. {% endif %}#}
  28. </span>
  29. </div>
  30. {% endif %}
  31. </div>
  32. </div>
  33. {% if product.pictures|length > 1 %}
  34. <ul class="thumbs">
  35. {% for picture in product.pictures %}
  36. <li class="thumb">
  37. <a {% if loop.first %}class="on" {% endif %} data-index="{{ loop.index0 }}"><img src="{{ asset(picture.webPath) | imagine_filter('product_small') }}" width="100" height="100" alt="{{ picture.title?picture.title:product.name }}"></a>
  38. </li>
  39. {% endfor %}
  40. </ul>
  41. {% endif %}
  42. </div>