templates/block/topmenu.html.twig line 1

Open in your IDE?
  1. {% set i = 1 %}
  2. <li><div id="sticky-mh-menu"></div></li>
  3. {% for menu in mainmenu %}
  4.     {% if menu.intname == '' %}
  5.         <li class="{{ intname == 'mainpage' ? 'active ' : '' }}{{ intname == 'checkout' ? ' visible-xs' : '' }}">
  6.             <form action="{{ path('redirect') }}" method="post">
  7.                 <button type="submit" name="redirect" value="{{ path('home') }}"><i class="fa fa-{{ menu.icon }}">&nbsp;&nbsp;</i>{{ menu.name |raw }}</button>
  8.             </form>
  9.         </li>
  10.         {{ include ('block/catmenu.html.twig', {'template': 'topmobilecatmenu'}) }}
  11.     {% else %}
  12.         <li class="{{ (menu.intname|replace({'/': ''}) in intname) ? 'active ' : '' }}{{ page.intname == 'checkout' ? ' visible-xs' : '' }}">
  13.             <form action="{{ path('redirect') }}" method="post">
  14.                 <button type="submit" name="redirect"{{ menu.intname == 'catalog/action' ? ' class="tm-action"' }} value="{{ app.request.locale != default_lang ? '/' ~ app.request.locale ~ '/' ~ menu.intname : '/' ~ menu.intname }}"><i class="fa fa-{{ menu.icon }}">&nbsp;&nbsp;</i>{{ menu.name |raw }}</button>
  15.             </form>
  16.         </li>
  17.     {% endif %}
  18. {% endfor %}
  19. <li><div id="sticky-mh-search"></div></li>
  20. <li><div id="sticky-mh-pics"></div></li>