mirror of
https://gitlab.com/veilid/veilid-dot-com.git
synced 2025-02-11 21:08:33 -05:00
9 lines
271 B
Twig
9 lines
271 B
Twig
![]() |
{%- if menu|length > 1 ~%}
|
||
|
<nav>
|
||
|
<ul>
|
||
|
{%- for item in attribute(site.menus, menu)|sort_by_weight ~%}
|
||
|
<li><a href="{{ url(item.url) }}">{{ item.name }}</a></li>
|
||
|
{%- endfor ~%}
|
||
|
</ul>
|
||
|
</nav>
|
||
|
{%- endif ~%}
|