themes/BootstrapTheme/templates/bundles/SyliusShopBundle/Taxon/_verticalMenu.html.twig line 1

Open in your IDE?
  1. {% import "@SyliusShop/Common/Macro/icons.html.twig" as icons %}
  2. {{ sylius_template_event('sylius.shop.product.index.before_vertical_menu', {'taxon': taxon}) }}
  3. <div class="col-lg  col-md-6 col-12">
  4.     <div class="categorie-flex">
  5.         <h1 class="categ-lib"><span>{{ taxon.name }} </span></h1>
  6.         <div class="descr-categ expand-me">
  7.             <p>{{ taxon.description|raw }}</p>
  8.         </div>
  9.         
  10.     </div>
  11. </div>
  12. <div class="col-lg-auto col-md-6 d-md-block d-none">
  13.     <div class="categ-ss-img text-right">
  14.         {% if taxon.images.first %}
  15.             {% set path = taxon.images.first.path|imagine_filter(filter|default('app_shop_taxon_show_main')) %}
  16.         {% else %}
  17.             {% set path = '//placehold.it/550x300' %}
  18.         {% endif %}
  19.         <img src="{{ path }}" alt="{{ taxon.name }}" class="" />
  20.     </div>
  21. </div>
  22. {{ sylius_template_event('sylius.shop.product.index.after_vertical_menu', {'taxon': taxon}) }}