diff options
author | m-r-r <raybaudroigm@gmail.com> | 2012-04-22 15:19:33 +0200 |
---|---|---|
committer | m-r-r <raybaudroigm@gmail.com> | 2012-04-22 15:19:33 +0200 |
commit | 7ecaefbdad1bc1e37eb7876fcf5d4814ba6a12d8 (patch) | |
tree | 32500f6120fab40911eb8dc8ac3e3c42b435cdb6 /dev-random/templates/base.html | |
parent | b34b452514f2bc032cfaa25295a99d415db4d743 (diff) | |
download | pelican-themes-7ecaefbdad1bc1e37eb7876fcf5d4814ba6a12d8.tar.gz |
Changed the menu behavior
Diffstat (limited to 'dev-random/templates/base.html')
-rw-r--r-- | dev-random/templates/base.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dev-random/templates/base.html b/dev-random/templates/base.html index 721a7fc..d5b1301 100644 --- a/dev-random/templates/base.html +++ b/dev-random/templates/base.html @@ -62,10 +62,13 @@ {% endfor %} {% if DISPLAY_PAGES_ON_MENU %} <li><a href="{{ SITEURL }}/index.html">Accueil</a></li> + <li><a href="{{ SITEURL }}/index.html">Archives</a></li> + <li><a href="{{ SITEURL }}/index.html">Mots-clés</a></li> {% for p in PAGES %} <li {% if p == page %}class="active"{% endif %}><a href="{{ SITEURL }}/{{ p.url|e }}">{{ p.title }}</a></li> {% endfor %} {% else %} + <li><a href="{{ SITEURL }}/index.html">Accueil</a></li> {% for cat, null in categories %} <li {% if cat == category %}class="active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url|e }}">{{ cat }}</a></li> {% endfor %} |