templates/themes/theme/common/menu.html.twig line 1

Open in your IDE?
  1. <ul>
  2.     {% for item in menu %}
  3.         <li>
  4.             <a
  5.                 href="{{ item.slug }}"
  6.                 class="{{ item.slug == currentUrl ? 'active' : '' }}"
  7.                 {% if item.new_window %}target="_blank"{% endif %}
  8.             >{{ item.navtitle }}</a>
  9.             {% if item.children is defined and item.children|length > 0 %}
  10.                 {% include "@theme/common/menu.html.twig" with { 'menu' : item.children, 'currentUrl' : currentUrl } only %}
  11.             {% endif %}
  12.             {% if item.isdynamic and item.dynamic_items|length > 0 %}
  13.                 <ul>
  14.                     {% for item in item.dynamic_items %}
  15.                         <li><a href="{{ item.slug }}">{{ item.navtitle }}</a></li>
  16.                     {% endfor %}
  17.                 </ul>
  18.             {% endif %}
  19.         </li>
  20.     {% endfor %}
  21. </ul>