From 5c231ceade17e7f5b1bba90e845dd2d17e54da1c Mon Sep 17 00:00:00 2001 From: Valentin Heinz Date: Sat, 8 Apr 2017 14:03:25 +0200 Subject: uikit demo theme ported to pelican (#385) --- uikit/templates/menu_macros.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 uikit/templates/menu_macros.html (limited to 'uikit/templates/menu_macros.html') diff --git a/uikit/templates/menu_macros.html b/uikit/templates/menu_macros.html new file mode 100644 index 0000000..bac503b --- /dev/null +++ b/uikit/templates/menu_macros.html @@ -0,0 +1,13 @@ +{% for title, link in MENUITEMS %} +
  • {{ title }}
  • +{% endfor %} +{% if DISPLAY_PAGES_ON_MENU %} + {% for p in PAGES %} + {{ p.title }} + {% endfor %} + {% if DISPLAY_CATEGORIES_ON_MENU %} + {% for cat, null in categories %} + {{ cat }} + {% endfor %} + {% endif %} +{% endif %} -- cgit