custom/plugins/ChespackTheme/src/Resources/views/storefront/layout/navigation/flyout.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/navigation/flyout.html.twig' %}
  2. {# Removed flyout bar with close button #}
  3. {% block layout_navigation_flyout_bar %}{% endblock %}
  4. {# Adjusted flyout layout and structure #}
  5. {% block layout_navigation_flyout_content %}
  6.     <div class="navigation-flyout-content row">
  7.         {# Split categories levels in to columns #}
  8.         {% block layout_navigation_flyout_categories_recoursion %}
  9.             {% sw_include '@Storefront/storefront/layout/navigation/categories.html.twig' with {
  10.                 navigationTree: navigationTree.children,
  11.                 page: page
  12.             } only %}
  13.         {% endblock %}
  14.     </div>
  15. {% endblock %}