templates/marketplaceProduct_GRID.html.twig line 1

Open in your IDE?
  1.     <div class="shoppingWindowHorisontal">
  2.         {% if shoppingWindow.product %}
  3.             {% set productImage = shoppingWindow.product.image1 %}
  4.         {% else %}
  5.             {% set productImage = '' %}
  6.         {% endif %}
  7.         {% if productImage and productImage != '' %}
  8.             <div class="productImageContainer">
  9.                 <a href="{{ shoppingWindow.shoppingWindowLinkUrl }}" class="shoppingWindowImageLink">
  10.                     <img src="{{ productImage }}" alt="Product Image" border="0" class="productGRIDThumb" target="_blank">
  11.                 </a>
  12.             </div>
  13.         {% endif %}
  14.         <div class="productTitleContainer">
  15.             <a href="{{ path('root') }}{{ shoppingWindow.shoppingWindowLinkUrl }}" target="_blank" class="shoppingWindowLink">{{ shoppingWindow.shoppingWindowTitle }}</a>
  16.         </div>
  17.     </div>