custom/plugins/LoyxxRichBreadcrumb/src/Resources/views/storefront/page/content/index.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/content/index.html.twig' %}
  2. {% block cms_breadcrumb %}
  3.     {% if page.header.extensions.breadcrumb.getBreadcrumb() and not page.header.extensions.breadcrumb.invisibility and not page.header.navigation.active.translated.customFields.loyxx_rich_breadcrumb_disabled %}
  4.         <div id="richBreadcrumb" class="breadcrumb cms-breadcrumb container d-flex flex-wrap">
  5.         {% set navigationTree = page.header.navigation.tree %}
  6.         {% set category = page.header.navigation.active %}
  7.         {% sw_include '@Storefront/storefront/layout/breadcrumb.html.twig' with {
  8.             context: context,
  9.             category: page.header.navigation.active,
  10.             page: page
  11.         } only %}
  12.         </div>
  13.     {% endif %}
  14. {% endblock %}