mirror of
https://gitlab.com/veilid/veilid-dot-com.git
synced 2025-03-13 02:46:35 -04:00
19 lines
639 B
Twig
19 lines
639 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 or "chat" in this_url %}
|
||
|
{% 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 ~%}
|