diff options
Diffstat (limited to 'lightweight/templates/menu.html')
-rw-r--r-- | lightweight/templates/menu.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lightweight/templates/menu.html b/lightweight/templates/menu.html index 9a9d011..5a6a52d 100644 --- a/lightweight/templates/menu.html +++ b/lightweight/templates/menu.html @@ -2,7 +2,7 @@ <a href="{{ SITEURL }}/index.html">Accueil</a> {% if DISPLAY_PAGES_ON_MENU != False%} {% for p in PAGES %} - <a {% if p == page %}class="active" {% endif %}href="{{ SITEURL }}/pages/{{ p.url }}">{{ p.title }}</a> + <a {% if p == page %}class="active" {% endif %}href="{{ SITEURL }}{{ p.url }}">{{ p.title }}</a> {% endfor %} {% else %} <a href="{{ SITEURL }}/categories.html">Catégories</a> |