aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Mayer <entroP@gmail.com>2016-06-21 13:49:51 -0600
committerGitHub <noreply@github.com>2016-06-21 13:49:51 -0600
commitd144d32f8155e3f1def171976dc1fe990795b71f (patch)
tree0cb358b77789da41c52922c53c899b412233b26b
parenta1b824bbcdfe83b2c8acb500e349a3476579b540 (diff)
parent3e68feee3cde8a90514df99f53652b3e595ad3c3 (diff)
downloadpelican-themes-d144d32f8155e3f1def171976dc1fe990795b71f.zip
pelican-themes-d144d32f8155e3f1def171976dc1fe990795b71f.tar.gz
pelican-themes-d144d32f8155e3f1def171976dc1fe990795b71f.tar.bz2
Merge pull request #395 from NathanHarrington/pelican-pages-fix
pelican-bootstrap3: Fix outdated PAGES variable to "pages"
-rw-r--r--pelican-bootstrap3/templates/base.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pelican-bootstrap3/templates/base.html b/pelican-bootstrap3/templates/base.html
index 1ad6611..cbbed8a 100644
--- a/pelican-bootstrap3/templates/base.html
+++ b/pelican-bootstrap3/templates/base.html
@@ -124,7 +124,7 @@
<li><a href="{{ link }}">{{ title }}</a></li>
{% endfor %}
{% if DISPLAY_PAGES_ON_MENU %}
- {% for p in PAGES %}
+ {% for p in pages %}
<li{% if p == page %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ p.url }}">
{{ p.menulabel|default(p.title) }}
</a></li>