aboutsummaryrefslogtreecommitdiff
path: root/templates/_nav.html
diff options
context:
space:
mode:
authorAlex <alex@adnab.me>2022-12-22 12:45:04 +0000
committerAlex <alex@adnab.me>2022-12-22 12:45:04 +0000
commit4831ac27871e44064dc55946c5ae10b8cda32b37 (patch)
treefd886ef1ded44fe457ab12241692d0ac89d52f0e /templates/_nav.html
parent73d4b846ec6976acd0abf53f28144823183fdfbd (diff)
parentec051a85db1ac5c3d05dda1954f9786cc67c0d52 (diff)
downloadguide.deuxfleurs.fr-4831ac27871e44064dc55946c5ae10b8cda32b37.tar.gz
guide.deuxfleurs.fr-4831ac27871e44064dc55946c5ae10b8cda32b37.zip
Merge pull request 'Améliorations du CSS responsive et navigation sur mobile' (#17) from navigation-mobile into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/guide.deuxfleurs.fr/pulls/17
Diffstat (limited to 'templates/_nav.html')
-rw-r--r--templates/_nav.html8
1 files changed, 7 insertions, 1 deletions
diff --git a/templates/_nav.html b/templates/_nav.html
index 3bfda07..b05e472 100644
--- a/templates/_nav.html
+++ b/templates/_nav.html
@@ -133,9 +133,15 @@
{% set root_path = hierarchy | nth(n=0) %}
{% set root = get_section(path=root_path) %}
+
+ <input id="menu-toggle" type="checkbox" />
+ <label class='menu-button-container' for="menu-toggle">
+ <div class="menu-button"></div>
+ <div class="toc-item toc-menu-title subtext">{{ root.title }}</div>
+ </label>
+
<div class="toc-item toc-section">
<a class="subtext" href="{{root.permalink | safe}}">{{ root.title }}</a>
</div>
-
{{ nav::navsection(hierarchy=hierarchy,level=0,current=current) }}
{% endmacro %}