mirror of
https://gitlab.com/veilid/veilid-dot-com.git
synced 2025-03-12 18:36:42 -04:00
19 lines
617 B
Twig
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 ~%}
|