modules/XC/CrispWhiteSkin/templates/web/customer/layout/header/mobile_header_parts/navbar_menu.twig line 1

Open in your IDE?
  1. {##
  2.  # Navbar menu
  3.  #
  4.  # @ListChild (list="header.menu", weight="2000")
  5.  #}
  6. {% if this.get('isSlidebar') %}
  7.   <li>
  8.     <div class="Panel" id="account-navbar-panel">
  9.       <ul class="Inset">
  10.         {% set account_items %}
  11.           {{ widget_list('slidebar.navbar.account') }}
  12.         {% endset %}
  13.         {{ account_items }}
  14.         {% if not account_items|trim is empty %}
  15.           <li class="mm-divider"></li>
  16.         {% endif %}
  17.         {{ widget_list('slidebar.navbar.account.additional-menu') }}
  18.       </ul>
  19.     </div>
  20.     {% if this.getViewList('slidebar.navbar.settings') %}
  21.       <div class="Panel" id="settings-navbar-panel">
  22.         <ul class="Inset">
  23.           {{ widget_list('slidebar.navbar.settings') }}
  24.         </ul>
  25.       </div>
  26.     {% endif %}
  27.   </li>
  28. {% endif %}