{% set variant = _args.variant|default('default') %}
{% set items = _args.items|default([]) %}
{% set mobile = _args.mobile|default(false) %}
{% if mobile %}
<div class="hc-dropdown-content hc-mobile-menu--wrapper hc-header-menu hc-header-menu--{{ variant }}">
<div class="hc-mobile-menu--section">
{% endif %}
<menu class="hc-header-menu{% if not mobile %} hc-dropdown-content hc-header-menu--{{ variant }} hc-dropdown-content--right{% endif %}">
{% block header %}{% endblock %}
{% for nav in items %}
{% include 'hc/dropdown-menu-nav.html.twig' with nav %}
{% endfor %}
</menu>
{% if mobile %}
</div>
</div>
{% endif %}