templates/main/page-produits-entretien-show.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}
  3.     {{ product.title }} - Produits d'entretien - {{ parent() }}  {# prepend #}
  4. {% endblock %}
  5. {% block body %}
  6. <div class="page">
  7.     {# retour #}
  8.     <div class="full-container fond-color-site">
  9.         <div class="container pa-20 mt-40">
  10.             <a href="{{ go_back }}" class="btn btn-border majuscule"><i class="icon icon-chevron-left"></i> Retour </a>
  11.         </div>
  12.     </div>
  13.     <div class="full-container">
  14.         <div class="container pa-20">
  15.             <div class="row fond-white border-gray-200 pa-20">
  16.                 <div class="medium-w-60 medium-pr-30">
  17.                     <h1>{{ product.title }}</h1>
  18.                     <div class="">
  19.                         {% if product.action | length > 0 %}
  20.                             {% for action in product.action %}
  21.                                 <span class="badge badge-gray-900 typo-60 majuscule rounded-pill pr-5">{{ action.name }}</span>
  22.                             {% endfor %}
  23.                         {% endif %}
  24.                         {% if product.category | length > 0 %}
  25.                             {% for category in product.category %}
  26.                                 <span class="badge badge-perso-bleu-clair typo-60 majuscule rounded-pill pr-5">{{ category.name }}</span>
  27.                             {% endfor %}
  28.                         {% endif %}
  29.                     </div>
  30.                     <h2 class="mt-30 typo-150">{{ product.subtitle }}</h2>
  31.                     {% if is_mobile %}
  32.                         <div class="separation-10"></div>
  33.                         {# MAIN IMAGE or NOT #}
  34.                         {% set mainImage = false %}{# utiliser pour déterminer le nb d'images dans la galerie #}
  35.                         {% for image in product.productImages %}
  36.                             {% if image.isMain %}
  37.                                 <img class="w-100" src="{{ asset('/upload/products/' ~ product.id ~ '/' ~ image.name) }}" alt="image">
  38.                                 {% set mainImage = true %}
  39.                             {% endif %}
  40.                         {% endfor %}
  41.                         <div class="separation-10"></div>
  42.                     {% endif %}
  43.                     <p class="">
  44.                         {{ product.shortContent }}
  45.                     </p>
  46.                     <p class="">
  47.                         {{ product.longContent|raw }}
  48.                     </p>
  49.                     <div class="separation-30"></div>
  50.                     {% if product.instructions %}
  51.                         <h3 class="typo-color-site-3">Instructions d'utilisation</h3>
  52.                         <p>
  53.                             {{ product.instructions|raw }}
  54.                         </p>
  55.                     {% endif %}
  56.                 </div>
  57.                 <div class="medium-w-40">
  58.                     {% if not is_mobile %}
  59.                         {# MAIN IMAGE or NOT #}
  60.                         {% set mainImage = false %}{# utiliser pour déterminer le nb d'images dans la galerie #}
  61.                         {% for image in product.productImages %}
  62.                             {% if image.isMain %}
  63.                                 <img class="w-100" src="{{ asset('/upload/products/' ~ product.id ~ '/' ~ image.name) }}" alt="image">
  64.                                 {% set mainImage = true %}
  65.                             {% endif %}
  66.                         {% endfor %}
  67.                     {% endif %}
  68.                 </div>
  69.             </div>
  70.         </div>
  71.     </div>
  72.     {# Galerie photos #}
  73.     {% set images = product.productImages %}
  74.     {% include 'main/content/galerie-photos-produits-entretien.html.twig' %}
  75. </div>
  76. {% endblock %}