{% set child = child ?? false %}<ul class="{{ child ? 'site-header__menu site-header__menu--child' : 'site-header__menu' }}">{% for item in menu %}<li><ahref="{{ 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, 'child' : true } 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>