Files
cnt-sindikatua/views/partials/menu.twig

27 lines
907 B
Twig
Raw Normal View History

2025-07-14 07:33:32 +00:00
{% if menu %}
2025-07-24 09:32:19 +00:00
<ul class="navbar-nav container menu-bar">
2025-07-17 09:34:11 +00:00
{% for item in items %}
{% if (item.children) %}
<li class="nav-item dropdown effect-nav">
{#<a class="nav-link dropdown-toggle" href="{{ item.link }}" role="button" data-bs-toggle="dropdown" aria-expanded="false">#}
<a class="nav-link dropdown-toggle" href="{{ item.link }}" role="button" aria-expanded="false">
{{item.title}}</a>
<ul class="dropdown-menu">
{% for subitem in item.children %}
<li><a class="dropdown-item" href="{{ subitem.link }}">{{subitem.title}}</a></li>
{% endfor %}
</ul>
</li>
{% else %}
<li class="{{item.classes | join(' ')}} nav-item effect-nav">
<a class="nav-link" href="{{ item.link }}">
{{ item.title }}
</a>
{% include 'partials/menu.twig' with {items: item.children} %}
</li>
{% endif %}
{% endfor %}
</ul>
2025-07-14 07:33:32 +00:00
{% endif %}
2025-07-17 09:34:11 +00:00