diff options
author | Alex <alex@adnab.me> | 2022-08-26 15:20:51 +0200 |
---|---|---|
committer | Alex <alex@adnab.me> | 2022-08-26 15:20:51 +0200 |
commit | 00c15b8e03f9112086c3c14b1f354ffe638f6954 (patch) | |
tree | ca370f4bdf26c94b64375971a8f00edd0217b01f /templates | |
parent | 8e9a22542027548cc9a93c491a9851e33d4ac459 (diff) | |
parent | fdd80f29108dee541941de2a3218ac7950c15462 (diff) | |
download | guide.deuxfleurs.fr-00c15b8e03f9112086c3c14b1f354ffe638f6954.tar.gz guide.deuxfleurs.fr-00c15b8e03f9112086c3c14b1f354ffe638f6954.zip |
Merge branch 'main' into vincent-main
Diffstat (limited to 'templates')
-rw-r--r-- | templates/_nav.html | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/templates/_nav.html b/templates/_nav.html index 9b76c96..e353681 100644 --- a/templates/_nav.html +++ b/templates/_nav.html @@ -9,15 +9,17 @@ <div class="toc-item"> {% if p.subsections or p.pages %} {% if p.path == current.path %} - <a class="subtext" href="{{ p.permalink | safe}}">⯆ <b>{{ p.title }}</b></a> + <a class="subtext" href="{{ p.permalink | safe}}">‣ <b>{{ p.title }}</b></a> {% elif hierarchy is containing(s) %} - <a class="subtext" href="{{ p.permalink | safe}}">⯆ {{ p.title }}</a> + <a class="subtext" href="{{ p.permalink | safe}}">‣ {{ p.title }}</a> {% else %} - <a class="subtext" href="{{ p.permalink | safe}}">⯈ {{ p.title }}</a> + <a class="subtext" href="{{ p.permalink | safe}}">‣ {{ p.title }}</a> {% endif %} {% if hierarchy is containing(s) or current.path == p.path %} {% if level + 1 < maxlevel %} - {{ nav::navsection(hierarchy=hierarchy,level=level + 1,current=current) }} + <div class="nav-subsection"> + {{ nav::navsection(hierarchy=hierarchy,level=level + 1,current=current) }} + </div> {% endif %} {% endif %} {% else %} |