Initial Commit

This commit is contained in:
2023-11-02 09:04:40 +01:00
commit 02d95f34e2
18 changed files with 274 additions and 0 deletions

9
templates/nav.html Normal file
View File

@ -0,0 +1,9 @@
<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>