aboutsummaryrefslogtreecommitdiff
path: root/templates/_macros.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/_macros.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/_macros.html')
-rw-r--r--templates/_macros.html20
1 files changed, 12 insertions, 8 deletions
diff --git a/templates/_macros.html b/templates/_macros.html
index 7c301a9..4f8d852 100644
--- a/templates/_macros.html
+++ b/templates/_macros.html
@@ -1,5 +1,7 @@
{% macro render_header() %}
{% set section = get_section(path="_index.md") %}
+
+
<a href="{{ section.permalink }}">
<div class="logo">
<img src="{{ get_url(path=config.extra.juice_logo_path) }}" alt="logo">
@@ -8,14 +10,16 @@
</a>
<nav>
- {% for subpath in section.subsections %}
- {% set sub = get_section(path=subpath) %}
- <a class="nav-item subtitle-text" href="{{ sub.permalink }}">{{ sub.title }}</a>
- {% endfor %}
- {% if config.extra.juice_extra_menu %}
- {% for menu in config.extra.juice_extra_menu %}
- <a class="nav-item subtitle-text" href="{{ menu.link }}">{{ menu.title }}</a>
+ <ul>
+ {% for subpath in section.subsections %}
+ {% set sub = get_section(path=subpath) %}
+ <li><a class="nav-item text" href="{{ sub.permalink }}">{{ sub.title }}</a></li>
{% endfor %}
- {% endif %}
+ {% if config.extra.juice_extra_menu %}
+ {% for menu in config.extra.juice_extra_menu %}
+ <li><a class="nav-item text" href="{{ menu.link }}">{{ menu.title }}</a></li>
+ {% endfor %}
+ {% endif %}
+ </ul>
</nav>
{% endmacro render_header %}