fmouhart.epheme.re/templates/nav.html

10 lines
302 B
HTML
Raw Normal View History

2023-11-02 08:04:40 +00:00
<nav>
<menu>
<li><a class="nav_selected" href="/">Home</a></li>
{% for subsection in root.subsections %}
{% set subsection = get_section(path=subsection, metadata_only=true) %}
<li><a href="{{ subsection.permalink }}">{{ subsection.title }}</a></li>
{% endfor %}
</menu>
</nav>