diff options
author | Patrick Pierson <patrick.c.pierson@gmail.com> | 2017-02-04 00:24:18 -0500 |
---|---|---|
committer | Patrick Pierson <patrick.c.pierson@gmail.com> | 2017-02-04 00:24:18 -0500 |
commit | 1f59f2d12ef9bd8e3fc912d6645001c154f1f0f2 (patch) | |
tree | 4491afa095509136225a16c20cb4711a661a191b /tuxlite_tbs | |
parent | d9bd332fb9de602fe3e31640d774528fb93c23a7 (diff) | |
download | pelican-themes-1f59f2d12ef9bd8e3fc912d6645001c154f1f0f2.tar.gz |
fixes pages context change for tuxlite_tbs theme
Diffstat (limited to 'tuxlite_tbs')
-rw-r--r-- | tuxlite_tbs/templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tuxlite_tbs/templates/base.html b/tuxlite_tbs/templates/base.html index 2ef2163..2734cc5 100644 --- a/tuxlite_tbs/templates/base.html +++ b/tuxlite_tbs/templates/base.html @@ -55,7 +55,7 @@ {% endfor %} {% if DISPLAY_PAGES_ON_MENU %} - {% for page in PAGES %} + {% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} {% endif %} |