mirror of
https://gitlab.com/veilid/veilid-dot-com.git
synced 2024-10-01 01:05:53 -04:00
21 lines
465 B
Twig
21 lines
465 B
Twig
|
|
||
|
|
||
|
{# ========== begin subsection nav ========== #}
|
||
|
|
||
|
<ul class="subsectionnav nav-underline">
|
||
|
{% for p in site.pages|sort_by_weight %}
|
||
|
{% if page.section in p.path %}
|
||
|
|
||
|
<li class="nav-item">
|
||
|
<a class="nav-link{% if p.path == page.path %} active{% else %}" href="{{ url(p.path) }}{% endif %}">
|
||
|
{{ p.title }}
|
||
|
</a>
|
||
|
</li>
|
||
|
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
|
||
|
{# ========== end subsection nav ========== #}
|
||
|
|