public/themes/karen/modules/cart-product-grid.html.twig line 1

Open in your IDE?
  1. <a href="{{ path('app_shop_site_product' , {'urlSlug' : product.urlSlug}) }}" class="hottest-slide_link">
  2.     {% if product.productImages|length > 0 %}
  3.         <img class="hottest-slide_img" src="{{ product.productImages[0].imageUrl }}" alt="{{ product.name }}">
  4.     {% elseif product.imageUrl is defined and product.imageUrl is not null %}
  5.         <img class="hottest-slide_img" src="{{ product.imageUrl }}" alt="{{ product.name }}">
  6.     {% endif %}
  7.     <p class="hottest-slide_text">
  8.         {{ product.name }}
  9.     </p>
  10. </a>