templates/shop/index.html.twig line 1

  1. {% extends 'base.html.twig'%}
  2. {% block title %}Print Shop - TeeVerse Photography
  3. {% endblock %}
  4. {% block stylesheets %}
  5.     <link rel="stylesheet" href="css/shop/style_shop.css">
  6. {% endblock %}
  7. {% block body %}
  8.     <div class="page">
  9.         <h1>Print Shop</h1>
  10.         <div
  11.             class="">
  12.             {# <li class="button_cart"><a href="/shop/cart">My Cart</a></li>
  13.                         <li class="button_cart"><a href="/shop/orders">My Orders</a></li> #}
  14.             <div class="vitrine">
  15.                 {% if products|length == 0 %}
  16.                     <p>Prints are coming soon...</p>
  17.                 {% else %}
  18.                     {% for product in products %}
  19.                         {% if product.getThumbnailImage.filename is defined%}
  20.                             <div class="product">
  21.                                 <a href="/shop/product/{{product.id}}">
  22.                                     <span class="productTitle">{{ product.title }}</span>
  23.                                     <img class="productImage" src="/uploads/low/{{product.getThumbnailImage.filename}}">
  24.                                     <span class="productPrice">£
  25.                                         {{ product.price }}</span>
  26.                                 </a>
  27.                             </div>
  28.                         {% endif %}
  29.                     {% endfor %}
  30.                 {% endif %}
  31.             </div>
  32.         </div>
  33.     </div>
  34. {% endblock %}
  35. {% block javascripts %}{% endblock %}