diff options
Diffstat (limited to 'tuxlite_zf')
-rw-r--r-- | tuxlite_zf/templates/base.html | 2 | ||||
-rw-r--r-- | tuxlite_zf/templates/index.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tuxlite_zf/templates/base.html b/tuxlite_zf/templates/base.html index 836ecea..88c4bb9 100644 --- a/tuxlite_zf/templates/base.html +++ b/tuxlite_zf/templates/base.html @@ -49,7 +49,7 @@ {% endfor %}
{% if DISPLAY_PAGES_ON_MENU %}
- {% for page in PAGES %}
+ {% for page in pages %}
<li><a href="{{ SITEURL }}/{{ page.url }}" class="button secondary small">{{ page.title }}</a></li>
{% endfor %}
{% endif %}
diff --git a/tuxlite_zf/templates/index.html b/tuxlite_zf/templates/index.html index 6e632dc..f6c8e52 100644 --- a/tuxlite_zf/templates/index.html +++ b/tuxlite_zf/templates/index.html @@ -41,7 +41,7 @@ {% else %} <h3>Pages</h3> - {% for page in PAGES %} + {% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} |