website/_src/_includes/nav-main.njk
2026-04-02 19:45:57 +03:00

24 lines
No EOL
602 B
Text

<section>
<h3>Pages</h3>
<ul role="list">
<li>
<a href="../">
<svg viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
<path d="{{ back }}"></path>
</svg>
Go back
</a>
</li>
{% for page in sortedPages %}
<li>
<a href="{{ page.url }}" {% if currentUrl.split('/')[1] === page.url.split('/')[1]|slugify %} aria-current="page" {% endif %}>
<svg viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
<path d="{{ page.data.icon }}"></path>
</svg>
{{ page.fileSlug | capitalize }}
</a>
</li>
{% endfor %}
</li>
</ul>
</section>