diff options
author | Justin Mayer <entroP@gmail.com> | 2016-06-21 13:49:51 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-21 13:49:51 -0600 |
commit | d144d32f8155e3f1def171976dc1fe990795b71f (patch) | |
tree | 0cb358b77789da41c52922c53c899b412233b26b /pelican-bootstrap3/templates | |
parent | a1b824bbcdfe83b2c8acb500e349a3476579b540 (diff) | |
parent | 3e68feee3cde8a90514df99f53652b3e595ad3c3 (diff) | |
download | pelican-themes-d144d32f8155e3f1def171976dc1fe990795b71f.tar.gz |
Merge pull request #395 from NathanHarrington/pelican-pages-fix
pelican-bootstrap3: Fix outdated PAGES variable to "pages"
Diffstat (limited to 'pelican-bootstrap3/templates')
-rw-r--r-- | pelican-bootstrap3/templates/base.html | 2 |
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> |