<ul>
{% for item in menu %}
<li>
<a
href="{{ item.slug }}"
class="{{ item.slug == currentUrl ? 'active' : '' }}"
{% if item.new_window %}target="_blank"{% endif %}
>{{ item.navtitle }}</a>
{% if item.children is defined and item.children|length > 0 %}
{% include "@theme/common/menu.html.twig" with { 'menu' : item.children, 'currentUrl' : currentUrl } only %}
{% endif %}
{% if item.isdynamic and item.dynamic_items|length > 0 %}
<ul>
{% for item in item.dynamic_items %}
<li><a href="{{ item.slug }}">{{ item.navtitle }}</a></li>
{% endfor %}
</ul>
{% endif %}
</li>
{% endfor %}
</ul>