aboutsummaryrefslogblamecommitdiffstats
path: root/uikit/templates/menu_macros.html
blob: bac503b089a7e31a7a906d142701ce8ea1edc89d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                                                          
{% for title, link in MENUITEMS %}
    <li><a href="{{ link }}">{{ title }}</a></li>
{% endfor %}
{% if DISPLAY_PAGES_ON_MENU %}
  {% for p in PAGES %}
    <li{% if p == page %} class="uk-active"{% endif %}><a href="/{{ p.url }}">{{ p.title }}</a></li>
  {% endfor %}
  {% if DISPLAY_CATEGORIES_ON_MENU %}
    {% for cat, null in categories %}
      <li{% if cat == category %} class="uk-active"{% endif %}><a href="/{{ cat.url }}">{{ cat }}</a></li>
    {% endfor %}
  {% endif %}
{% endif %}