Navigation selects the current page

This commit is contained in:
2023-11-06 10:00:03 +01:00
committed by Fabrice Mouhartem
parent 9d1a528b74
commit 494379d020
3 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,9 @@
<nav>
<menu>
<li><a class="nav_selected" href="/">Home</a></li>
<li><a {% if section and section == root %} class="nav_current" {% endif %} 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>
<li><a href="{{ subsection.permalink }}" {% if section and section == subsection %} class="nav_current" {% endif %}>{{ subsection.title }}</a></li>
{% endfor %}
</menu>
</nav>