templates/frontend/cms_menu.html.twig line 1

Open in your IDE?
  1. <ul>
  2.     {% for menu_item in get_menu_items(root) %}
  3.         <li id="menu_{{ loop.index }}"
  4.             data-id="{{ loop.index }}"
  5.             {% if loop.first %}class="first"{% endif %}>
  6.             <a href="{{ path(menu_item) }}" target="_self" class="header_link">
  7.                 {{ ('menu_item.' ~ menu_item)|trans([], 'menu') }}
  8.             </a>
  9.         </li>
  10.     {% endfor %}
  11. </ul>