aboutsummaryrefslogtreecommitdiffstats
path: root/lightweight/templates/menu.html
blob: 5a6a52da58897eef943e930c8a78023dcdeb1f30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<nav id="menu">
  <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 }}{{ p.url }}">{{ p.title }}</a>
    {% endfor %}
  {% else %}
  <a href="{{ SITEURL }}/categories.html">Catégories</a>
  <a href="{{ SITEURL }}/tags.html">Mots-clés</a>
  {% endif %}
  <a href="{{ SITEURL }}/archives.html">Archives</a>

</nav> <!-- /#nav -->