templates/front/product/product_single.html.twig line 1

Open in your IDE?
  1. {% extends 'base_front.html.twig' %}
  2. {% block body %}
  3.     <section id="products" class="accessories">
  4.         <div class="container-right container-video position-relative bg-black-transparent p-5">
  5.             <h2 class="black mb-3">{{ productPage.subCategory.name }}</h2>
  6.             <div class="row mt-5">
  7.                 <div class="col-lg-12 col-xl-5">
  8.                     <div class="description bg-white p-4">
  9.                         <h3 class="black mb-0">{{ productPage.name }}</h3>
  10.                         <h4 class="subtitle blue-light">Description</h4>
  11.                         <div class="detail mt-3">
  12.                             <p>{{ productPage.description|raw }}</p>
  13.                         </div>
  14.                         {% if productPage.document %}
  15.                             <div class="download-link">
  16.                                 <a href="{{ asset('upload/content/' ~ productPage.document) }}" target="_blank" class="black">Download the data sheet <img class="ml-1" src="{{ asset('img/icons/download.svg') }}"></a>
  17.                             </div>
  18.                         {% endif %}
  19.                     </div>
  20.                     <h6 class="font-weight-bold mt-5 text-center title-sub-desc">More informations about this product?</h6>
  21.                     <div class="col-md-6 m-auto pt-4">
  22.                         <a href="#" class="blue-link"><span>Send us a message</span></a>
  23.                     </div>
  24.                 </div>
  25.                 <div class="col-lg-12 col-xl-4">
  26.                     <div class="description">
  27.                         <h4 class="subtitle blue-light">Benefits</h4>
  28.                         <div class="detail mt-3">
  29.                             {{ productPage.benefit|raw }}
  30.                         </div>
  31.                     </div>
  32.                 </div>
  33.                 <div class="col-lg-12 col-xl-3 gallery-accessories">
  34.                     <h4 class="subtitle blue-light">Gallery</h4>
  35.                     <div class="flex-column">
  36.                         {% for image in productPage.images %}
  37.                             <div class="col-lg-3 col-xl-12 p-0">
  38.                                 <img src="{{ asset('upload/content/' ~ image.name) }}" alt="" class="mt-3">
  39.                             </div>
  40.                         {% endfor %}
  41.                     </div>
  42.                 </div>
  43.             </div>
  44.             <div class="col-md-12 row justify-content-between links-return">
  45.                 <a href="{{ path('front_product_list', {'category_slug' : productPage.subcategory.category.slug, 'subcategory_slug': productPage.subCategory.slug}) }}">All products</a>
  46.                 {% if nextProductPage %}
  47.                     <a href="{{ path('front_product_page', {'category_slug' : productPage.subcategory.category.slug, 'subcategory_slug': productPage.subcategory.slug, 'slug_page': nextProductPage.slug}) }}">Next product</a>
  48.                 {% endif %}
  49.             </div>
  50.         </div>
  51.     </section>
  52. {% endblock %}