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

Open in your IDE?
  1. {% if not customerMgr.isExpert() %}
  2.     {% if product.isSoleil() %}
  3.         <div class="soleil">
  4.             <img src="{{ asset('img/pictos/soleil.svg') }}" alt="{% trans %}Produit soleil{% endtrans %}">
  5.         </div>
  6.     {% elseif product.soleil == 0 %}
  7.         <div class="soleil">
  8.             <img src="{{ asset('img/pictos/non-soleil.svg') }}" alt="{% trans %}-10% dès 6 articles achetés{% endtrans %}">
  9.         </div>
  10.     {% endif %}
  11. {% endif %}