themes/BootstrapTheme/templates/bundles/SyliusShopBundle/Brand/Product/index.html.twig line 1

Open in your IDE?
  1. {% extends '@SyliusShop/layout.html.twig' %}
  2. {% block title %}{{ 'sylius.ui.products'|trans }} | {{ parent() }}{% endblock %}
  3. {% block content %}
  4.     <div class="max-container-5 px-0">
  5.         {% block breadcrumb %}
  6.             {% include '@SyliusShop/Brand/Product/Index/_breadcrumb.html.twig' with { 'brand' : brand } %}
  7.         {% endblock %}
  8.         <div class=" py-2 py-md-3 my-2 my-md-3">
  9.             {% include '@SyliusShop/Brand/Product/Index/_header.html.twig' with { 'brand' : brand } %}
  10.         </div>
  11.         {% if taxons|length > 0 %}
  12. {#            <div>#}
  13. {#                {% for taxon in taxons %}#}
  14. {#                    <div class="mb-2"><a href="#{{ taxon.taxon.code }}" class="color-blue-s text-uppercase font-18"><strong>{{ taxon.taxon.code }}</strong></a></div>#}
  15. {#                {% endfor %}#}
  16. {#            </div>#}
  17.             {% for taxon in taxons %}
  18.                  <div class="text-grey font-seize py-3">Catégorie :  <a href="{{ path('monsieurbiz_sylius_search_taxon', {slug: taxon.taxon.translations[app.request.locale].slug}) }}" class="color-orange">{{ taxon.taxon.name }}</a></div>
  19.                 <div class="liste-articles pt-md-4 pt-2 pb-md-4 pb-2 mt-xl-2 px-lg-0 px-3">
  20.                     <div class="row mx-n2 mx-n3 mx-lg-n3p mx-xs-n2" id="{{ taxon.taxon.name }}">
  21.                         {% for product in taxon.products %}
  22.                             <div class="col-lg-3 col-md-4 col-sm-6 col-12 px-3 mb-md-3 mb-4 px-lg-3p mb-lg-5p px-xs-2">
  23.                                 {% include '@SyliusShop/Product/_box.html.twig' with {'product': product} only %}
  24.                             </div>
  25.                         {% endfor %}
  26.                     </div>
  27.                 </div>
  28.             {% endfor %}
  29.         {% else %}
  30.             <span style="text-align: center;display: block;">Il n'y a aucun produit pour le moment...</span>
  31.         {% endif %}
  32.     </div>
  33. {%  endblock %}