diff options
author | Alexis Metaireau <alexis@notmyidea.org> | 2017-04-08 13:47:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-08 13:47:45 +0200 |
commit | a7fd272c50ac73e1fad3f366d8b5d5205fd41af2 (patch) | |
tree | 4501f0acc577ab860ac52d0a414ecc322ba9f793 /lightweight/templates/menu.html | |
parent | 09d9894274322bf54886ea6a684c6b4184b61d00 (diff) | |
parent | 46995e6f167c76e42f2295f1b66a86af3d8c8dc4 (diff) | |
download | pelican-themes-a7fd272c50ac73e1fad3f366d8b5d5205fd41af2.tar.gz |
Merge branch 'master' into add_minimalX
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 2e4702f..7ef9755 100644 --- a/lightweight/templates/menu.html +++ b/lightweight/templates/menu.html @@ -1,7 +1,7 @@ <nav id="menu"> <a href="{{ SITEURL }}/index.html">Accueil</a> {% if DISPLAY_PAGES_ON_MENU != False%} - {% for p in PAGES %} + {% for p in pages %} <a {% if p == page %}class="active" {% endif %}href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a> {% endfor %} {% else %} |