<ul class="dropdown-list">
{% for item in items %}
<li class="dropdown-item">
<button
class="dropdown-link"
onclick="window.location.href='{{ path(item.path, {_locale: locale, categoriaId: item.slug}) }}'"
{% if item.tab is defined %}
data-tab="{{ item.tab }}"
{% endif %}
type="button">
<span>{{ item.label }}</span>
{% if item.menu is defined %}
<i class="icon-arrow"></i>
{% endif %}
</button>
{% if item.menu is defined %}
<div class="dropdown-sub">
{{ include('home/components/_tabs_dropdown.html.twig', {
items: item.menu
}) }}
</div>
{% endif %}
</li>
{% endfor %}
</ul>