templates/shoppingWindow.html.twig line 1

Open in your IDE?
  1. <a name="shoppingWindow"></a>
  2. <div class="shoppingWindowContainer">
  3. <table>
  4.   <tr>
  5.     <td><h3>Shopping window</h3></td>
  6.   </tr>
  7. </table>
  8.     {% for shoppingWindow in shoppingWindowList %}
  9.         {% set productView = "GRID" %}
  10.         {% set imageThumbWidth = 200 %}
  11.         {% set marketplaceTemplate = "marketplaceProduct_" ~ productView ~ ".html.twig" %}
  12.         {{ include(marketplaceTemplate) }}
  13.     {% endfor %}
  14. </div>