<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 %}
<div class="sub-menu">
<div class="container">
<div class="menu-cols">
{% include "@theme/common/menu.html.twig" with { 'menu' : item.children, 'currentUrl' : currentUrl } only %}
</div>
</div>
</div>
{% endif %}
{% if item.isdynamic and item.dynamic_items|length > 0 %}
{% for item in item.dynamic_items %}
<li class="dynamic"><a href="{{ item.slug }}">{{ item.icon|raw }}{{ item.navtitle }}</a></li>
{% endfor %}
{% endif %}
</li>
{% endfor %}
</ul>