themes/webapicTheme/templates/site_taxon_level1_show.html.twig line 1

Open in your IDE?
  1. {% extends '@SyliusShop/layout.html.twig' %}
  2. {% block title %}
  3.     {{ taxon.seoTitle|default(taxon.name) }} | {{ parent() }}
  4. {% endblock %}
  5. {% block metatags %}
  6.     {{ parent() }}
  7.     {% if taxon.seoMetaDescription is not empty %}
  8.     <meta name="description" content="{{ taxon.seoMetaDescription }}" />
  9.     {% endif %}
  10. {% endblock %}
  11. {% block content %}
  12. {# Fil d'ariane #}
  13. {{ wo_render_breadcrumbs() }}
  14. <div class="categorie">
  15.     <div class="categorie-top categorie-top-single {{ taxon.categoryType == 'category_type_fabric' ? 'category-top-tissu' : '' }}">
  16.         <h1>{{ taxon.name }}</h1>
  17.     </div>
  18.     <div class="categorie-main-childrens ui three column grid container">
  19.         {% for child in taxon.children %}
  20.         <div class="categorie-main-child-column column">
  21.             <div class="categorie-main-child">
  22.                 <div class="categorie">
  23.                     <a href="{{ path('sylius_shop_product_index', {'slug': child.slug}) }}">
  24.                         {% if child.imagesByType('image_taxon_main')|length > 0 %}
  25.                         <img class="ui image" src="{{ child.imagesByType('image_taxon_main').first.path|imagine_filter('app_taxon_image_taxon_main') }}" />
  26.                         {% else %}
  27.                         <img class="ui image" src="{{ asset('webapic-theme/images/placeholder-category-image.png') }}" />
  28.                         {% endif %}
  29.                         <h2>{{ child.name }}</h2>
  30.                     </a>
  31.                 </div>
  32.             </div>
  33.         </div>
  34.         {% endfor %}
  35.     </div>
  36. </div>
  37. {% endblock %}