commentaires et petit tweak

This commit is contained in:
2024-03-19 12:07:00 +01:00
parent 5a05f8c50d
commit 10a5a0a677
2 changed files with 112 additions and 40 deletions

View File

@ -52,13 +52,15 @@
{% endif %}
{% endfor %}
{% endif %}
{% if DISPLAY_CATEGORIES_ON_MENU %} |
{% if DISPLAY_CATEGORIES_ON_MENU %}
{% for cat, null in categories %}
{% if loop.first %} | {% endif %}
{% if cat!="author" %}
<a href="{{ SITEURL }}/{{ cat.url }}"{% if cat==category %} aria-current="page" class="current"{% endif %}>{{ cat}}</a>
{% endif %}
{% endfor %}
{% if DISPLAY_LINKS_ON_MENU %} |
{% if DISPLAY_LINKS_ON_MENU %}
{% if loop.first %} | {% endif %}
{% for title, link in LINKS %}
<a href="{{ link }}">{{ title }}</a>
{% endfor %}