aboutsummaryrefslogtreecommitdiffstats
path: root/notebook
diff options
context:
space:
mode:
Diffstat (limited to 'notebook')
-rw-r--r--notebook/templates/base.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/notebook/templates/base.html b/notebook/templates/base.html
index 5483e93..c77cd93 100644
--- a/notebook/templates/base.html
+++ b/notebook/templates/base.html
@@ -45,10 +45,10 @@
{% for title, link in MENUITEMS %}
<li><a href="{{ link }}">{{ title }}</a></li>
{% endfor %}
- {% if DISPLAY_PAGES_ON_MENU and PAGES %}
+ {% if DISPLAY_PAGES_ON_MENU and pages %}
<h2>Pages</h2>
<ul class="navbar">
- {% for p in PAGES %}
+ {% for p in pages %}
<li><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li>
{% endfor %}
</ul>