2025-03-05 10:36:51 -05:00

19 lines
617 B
Twig

{%- if menu|length > 1 ~%}
<nav id="main-nav">
<ol class="nav nav-underline flex-column">
{%- for item in site.menus[menu]|sort_by_weight ~%}
{% set this_url = url(item.url) %}
{% if loop.index == 1 %}
{% else %}
{% set active_link = (this_url in here) %}
<li class="nav-item">
<a href="{{ this_url }}" class="nav-link{% if active_link %} active{% endif %}">
{{ item.name }}
</a>
</li>
{% endif %}
{%- endfor ~%}
</ol>
</nav>
{%- endif ~%}