custom/plugins/TonurSeoFilterLandingpages6/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.landingpage and
  4.         config('TonurSeoFilterLandingpages6.config.active') and
  5.         config('TonurSeoFilterLandingpages6.config.showBreadcrumb') %}
  6.         <div class="breadcrumb cms-breadcrumb container">
  7.             {% sw_include '@Storefront/storefront/layout/breadcrumb.html.twig' with {
  8.                 context: context,
  9.                 category: page.header.navigation.active,
  10.                 tonurLandingpage: page.landingpage,
  11.                 metaInformation: page.metaInformation
  12.             } only %}
  13.         </div>
  14.     {% else %}
  15.         {{ parent() }}
  16.     {% endif %}
  17. {% endblock %}