custom/plugins/EmzPlatformRubyTheme/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 base_main_inner %}
  3.     <div class="container-main">
  4.         {% block page_content %}
  5.             {# @deprecated tag:v6.4.0 class `cms-breadcrump` use `cms-breadcrumb` instead #}
  6.             {% if not controllerAction is same as('home') %}
  7.                 <div class="emz-breadcrumb">
  8.                     <div class="breadcrumb cms-breadcrumb cms-breadcrump container">
  9.                         {% block cms_breadcrumb %}
  10.                             {% sw_include '@Storefront/storefront/layout/breadcrumb.html.twig' with {
  11.                             navigationTree: page.header.navigation.tree,
  12.                             category: page.header.navigation.active
  13.                             } only %}
  14.                         {% endblock %}
  15.                     </div>
  16.                 </div>
  17.             {% endif %}
  18.             <div class="cms-page">
  19.                 {% block page_content_blocks %}
  20.                     {% sw_include "@Storefront/storefront/page/content/detail.html.twig" with {'cmsPage': page.cmsPage} %}
  21.                 {% endblock %}
  22.             </div>
  23.         {% endblock %}
  24.     </div>
  25. {% endblock %}