modules/QSL/FlyoutCategoriesMenu/templates/web/customer/layout/slidebar.twig line 1

Open in your IDE?
  1. {##
  2.  # Slidebar
  3.  #}
  4. <nav id="slidebar" data-mobile-navbar>
  5.   {% if this.shouldRender() %}
  6.     <ul>
  7.       {% if this.isDisplayCategories() %}
  8.         <li class="{{ this.getCategoriesListItemCSSClass() }}">
  9.           <span data-toggle="dropdown">{{ t('Categories') }}</span>
  10.           {{ widget_list('layout.header.categories') }}
  11.         </li>
  12.       {% endif %}
  13.       {{ widget_list('header.menu', isSlidebar=true) }}
  14.     </ul>
  15.   {% endif %}
  16. </nav>