aboutsummaryrefslogtreecommitdiffstats
path: root/dev-random
diff options
context:
space:
mode:
authorm-r-r <raybaudroigm@gmail.com>2012-04-22 15:19:33 +0200
committerm-r-r <raybaudroigm@gmail.com>2012-04-22 15:19:33 +0200
commit7ecaefbdad1bc1e37eb7876fcf5d4814ba6a12d8 (patch)
tree32500f6120fab40911eb8dc8ac3e3c42b435cdb6 /dev-random
parentb34b452514f2bc032cfaa25295a99d415db4d743 (diff)
downloadpelican-themes-7ecaefbdad1bc1e37eb7876fcf5d4814ba6a12d8.zip
pelican-themes-7ecaefbdad1bc1e37eb7876fcf5d4814ba6a12d8.tar.gz
pelican-themes-7ecaefbdad1bc1e37eb7876fcf5d4814ba6a12d8.tar.bz2
Changed the menu behavior
Diffstat (limited to 'dev-random')
-rw-r--r--dev-random/templates/base.html3
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 %}