diff options
author | Nathan Harrington <harrington.nathan@gmail.com> | 2016-05-30 13:19:49 -0400 |
---|---|---|
committer | Nathan Harrington <harrington.nathan@gmail.com> | 2016-05-30 13:19:49 -0400 |
commit | 3e68feee3cde8a90514df99f53652b3e595ad3c3 (patch) | |
tree | f752b466b45703e2808f29020f3adb89bec42ff2 /pelican-bootstrap3/templates | |
parent | ccb8efc064dff0cc24fe715d8f83e33e061c64de (diff) | |
download | pelican-themes-3e68feee3cde8a90514df99f53652b3e595ad3c3.tar.gz |
Correctly display pages on menu by correcting pages variable name
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 610d050..84947c1 100644 --- a/pelican-bootstrap3/templates/base.html +++ b/pelican-bootstrap3/templates/base.html @@ -122,7 +122,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> |