custom/plugins/ChespackTheme/src/Resources/views/storefront/page/content/index.html.twig line 6

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/content/index.html.twig' %}
  2. {# If category page, move breadcrumb to another block #}
  3. {% block cms_breadcrumb %}
  4.     {% if page.cmsPage.name != "Category landing page" and page.cmsPage.name != "Category page" %}
  5.         <div class="breadcrumb cms-breadcrumb container">
  6.             {% sw_include '@Storefront/storefront/layout/breadcrumb.html.twig' with {
  7.                 context: context,
  8.                 category: page.header.navigation.active
  9.             } only %}
  10.         </div>
  11.     {% endif %}
  12. {% endblock %}