diff options
46 files changed, 51 insertions, 51 deletions
diff --git a/Just-Read/templates/base.html b/Just-Read/templates/base.html index 7c03499..cdb865b 100644 --- a/Just-Read/templates/base.html +++ b/Just-Read/templates/base.html @@ -39,7 +39,7 @@ <footer class="clearfix"> <div class="wrapper pages"> <ul class="nav"> - {% for p in PAGES %} + {% for p in pages %} <li><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li> {% endfor %} <li><a href="{{ SITEURL }}/archives.html">Archive</a></li> diff --git a/SoMA/templates/index.html b/SoMA/templates/index.html index 4f35eee..38771bf 100644 --- a/SoMA/templates/index.html +++ b/SoMA/templates/index.html @@ -24,7 +24,7 @@ <section id="content" > <div class="body"> <h2>Pages</h2> - {% for page in PAGES %} + {% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </div> diff --git a/SoMA2/templates/index.html b/SoMA2/templates/index.html index 1a15916..6381496 100644 --- a/SoMA2/templates/index.html +++ b/SoMA2/templates/index.html @@ -24,7 +24,7 @@ <section id="content" > <div class="body"> <h2>Pages</h2> - {% for page in PAGES %} + {% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </div> diff --git a/aboutwilson/templates/base.html b/aboutwilson/templates/base.html index 8c4ba57..b5738a9 100644 --- a/aboutwilson/templates/base.html +++ b/aboutwilson/templates/base.html @@ -44,7 +44,7 @@ <li><a href="{{ SITEURL }}/{{ link }}"><i class="fa fa-{{ title }} "></i> {{title}}</a></li> {% endfor %} {% if DISPLAY_PAGES_ON_MENU %} - {% for page in PAGES %} + {% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}"><i class="fa fa-{{ page.title }} "></i> {{page.title}}</a></li> {% endfor %} {% endif %} diff --git a/bootlex/templates/base.html b/bootlex/templates/base.html index f65a332..f0e095c 100644 --- a/bootlex/templates/base.html +++ b/bootlex/templates/base.html @@ -33,9 +33,9 @@ <li {% block menu_entry_tag %}{% endblock %}><a href="{{ SITEURL }}/tags/">Tags</a></li> <li {% block menu_entry_archive %}{% endblock %}><a href="{{ SITEURL }}/archives/">Archiv</a></li> {% if DISPLAY_PAGES_ON_MENU %} - {% if PAGES %} + {% if pages %} <li class="nav-header">Seiten</li> - {% for p in PAGES %} + {% for p in pages %} <li{% if p == page %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li> {% endfor %} {% endif %} diff --git a/bootstrap/templates/base.html b/bootstrap/templates/base.html index e9edd0e..7312df2 100644 --- a/bootstrap/templates/base.html +++ b/bootstrap/templates/base.html @@ -48,7 +48,7 @@ <li><a href="{{ link }}">{{ title }}</a></li> {% 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 %} diff --git a/bootstrap2-dark/templates/base.html b/bootstrap2-dark/templates/base.html index 6b18f05..c2dae9d 100644 --- a/bootstrap2-dark/templates/base.html +++ b/bootstrap2-dark/templates/base.html @@ -70,7 +70,7 @@ <li><a href="{{ link }}">{{ title }}</a></li> {% 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 %} <li class="divider-vertical"></li> diff --git a/bootstrap2-dark/templates/index.html b/bootstrap2-dark/templates/index.html index db92ac6..c711a2d 100644 --- a/bootstrap2-dark/templates/index.html +++ b/bootstrap2-dark/templates/index.html @@ -35,10 +35,10 @@ </div> {% else %} - {% if PAGES %} + {% if pages %} <section id="content" class="body"> <h1>Pages</h1> - {% for page in PAGES %} + {% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </section> diff --git a/bootstrap2/templates/base.html b/bootstrap2/templates/base.html index a5ffa2f..76b5569 100644 --- a/bootstrap2/templates/base.html +++ b/bootstrap2/templates/base.html @@ -70,7 +70,7 @@ <li><a href="{{ link }}">{{ title }}</a></li> {% 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 %} <li class="divider-vertical"></li> diff --git a/bootstrap2/templates/index.html b/bootstrap2/templates/index.html index db92ac6..c711a2d 100644 --- a/bootstrap2/templates/index.html +++ b/bootstrap2/templates/index.html @@ -35,10 +35,10 @@ </div> {% else %} - {% if PAGES %} + {% if pages %} <section id="content" class="body"> <h1>Pages</h1> - {% for page in PAGES %} + {% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </section> diff --git a/bricabrac/templates/base.html b/bricabrac/templates/base.html index 7d61e87..51f6284 100644 --- a/bricabrac/templates/base.html +++ b/bricabrac/templates/base.html @@ -23,7 +23,7 @@ <nav> <ul> <li><a href="https://blog.getpelican.com/">Pelican</a> & <a href="">brc theme</a></li> -{% for page in PAGES %} +{% for page in pages %} <li>:: <a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a>{% if not loop.last %} ::{% endif %}</li> {% endfor %} {% if categories|length > 1 %} diff --git a/brownstone/templates/base.html b/brownstone/templates/base.html index adf3c6d..1f8c900 100644 --- a/brownstone/templates/base.html +++ b/brownstone/templates/base.html @@ -39,7 +39,7 @@ Released : 20100928 <li {% if page_name == "index" %}class="current_page_item"{% endif %}><a href="{{ SITEURL }}">Home</a></li> <li {% if page_name == "archives" %}class="current_page_item"{% endif %}><a href="{{ SITEURL }}/archives.html">Archives</a></li> {% if DISPLAY_PAGES_ON_MENU %} - {% for page in PAGES %} + {% for page in pages %} <li {% if page_name == page_title %}class="current_page_item"{% endif %}><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} {% endif %} diff --git a/built-texts/templates/base.html b/built-texts/templates/base.html index 253de0e..f7e4396 100644 --- a/built-texts/templates/base.html +++ b/built-texts/templates/base.html @@ -41,7 +41,7 @@ <div class="span3" id="blog-nav"> <ul class="nav nav-pills pull-right"> {% 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 %} diff --git a/cebong/templates/base.html b/cebong/templates/base.html index 18139b6..bb61311 100644 --- a/cebong/templates/base.html +++ b/cebong/templates/base.html @@ -47,7 +47,7 @@ <a href="{{ link }}">{{ title }}</a> {% endfor %} {% if DISPLAY_PAGES_ON_MENU %} - {% for page in PAGES %} + {% for page in pages %} <a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a> {% endfor %} {% endif %} diff --git a/cebong/templates/index.html b/cebong/templates/index.html index 2da63e0..4fe58de 100644 --- a/cebong/templates/index.html +++ b/cebong/templates/index.html @@ -51,7 +51,7 @@ {% else %} <section id="content" class="body"> <h2>Pages</h2> - {% for page in PAGES %} + {% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </section> diff --git a/dev-random/templates/includes/sidebar.html b/dev-random/templates/includes/sidebar.html index 5c5e426..9bc00e2 100644 --- a/dev-random/templates/includes/sidebar.html +++ b/dev-random/templates/includes/sidebar.html @@ -11,7 +11,7 @@ {% endfor %} {% endif %} {% if DISPLAY_PAGES_ON_MENU %} - {% for p in PAGES %} + {% for p in pages %} <li><a href="{{ SITEURL}}/{{ p.url|e }}"{% if p == page %} class="active"{% endif %}>{{ p.title }}</a></li> {% endfor %} {% endif %} diff --git a/dev-random2/templates/includes/sidebar.html b/dev-random2/templates/includes/sidebar.html index 0d5d5ef..b3789e8 100644 --- a/dev-random2/templates/includes/sidebar.html +++ b/dev-random2/templates/includes/sidebar.html @@ -13,7 +13,7 @@ {% endfor %} {% endif %} {% if DISPLAY_PAGES_ON_MENU %} - {% for p in PAGES %} + {% for p in pages %} <li><a href="{{ SITEURL}}/{{ p.url }}"{% if p == page %} class="active"{% endif %}>{{ p.title }}</a></li> {% endfor %} {% endif %} diff --git a/foundation-default-colours/templates/base.html b/foundation-default-colours/templates/base.html index ac639c0..9399e55 100644 --- a/foundation-default-colours/templates/base.html +++ b/foundation-default-colours/templates/base.html @@ -115,7 +115,7 @@ {% endfor %} </ul> <ul class="right"> - {% for pg in PAGES | sort(attribute='index') %} + {% for pg in pages | sort(attribute='index') %} {% if 'http://' in pg.url -%} <li><a href="{{ pg.url }}">{{ pg.title }}</a></li> {% else %}···· diff --git a/franticworld/templates/sidebar.html b/franticworld/templates/sidebar.html index c8811c2..fe695af 100644 --- a/franticworld/templates/sidebar.html +++ b/franticworld/templates/sidebar.html @@ -1 +1 @@ -<div class="sidebarcategory">
<h4>Categories</h4>
{% for cat, null in categories %}
<li><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li>
{% endfor %}
</div>
<div class="sidebarpages">
{% if PAGES %}
<h4>Pages</h4>
{% for page in PAGES %}
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
{% endif %}
</div>
<div class="sidebarblogroll">
{% if LINKS %}
<h4>Blogroll</h4>
{% for name, link in LINKS %}
<li><a href="{{ link }}" target="_blank">{{ name }}</a></li>
{% endfor %}
{% endif %}
</div>
<div class="sidebarsocial">
{% if SOCIAL %}
<h4>Social</h4>
{% for name, link in SOCIAL %}
<li><a href="{{ link }}">{{ name }}</a></li>
{% endfor %}
{% endif %}
</div>
\ No newline at end of file +<div class="sidebarcategory">
<h4>Categories</h4>
{% for cat, null in categories %}
<li><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li>
{% endfor %}
</div>
<div class="sidebarpages">
{% if pages %}
<h4>Pages</h4>
{% for page in pages %}
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
{% endif %}
</div>
<div class="sidebarblogroll">
{% if LINKS %}
<h4>Blogroll</h4>
{% for name, link in LINKS %}
<li><a href="{{ link }}" target="_blank">{{ name }}</a></li>
{% endfor %}
{% endif %}
</div>
<div class="sidebarsocial">
{% if SOCIAL %}
<h4>Social</h4>
{% for name, link in SOCIAL %}
<li><a href="{{ link }}">{{ name }}</a></li>
{% endfor %}
{% endif %}
</div>
\ No newline at end of file diff --git a/gum/templates/base.html b/gum/templates/base.html index 55feaaa..e4ee6ff 100644 --- a/gum/templates/base.html +++ b/gum/templates/base.html @@ -94,7 +94,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.title }}</a></li> {% endfor %} {% else %} diff --git a/gum/templates/sidebar.html b/gum/templates/sidebar.html index d0df6b0..a60477f 100644 --- a/gum/templates/sidebar.html +++ b/gum/templates/sidebar.html @@ -7,7 +7,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.title }}</a></li> {% endfor %} {% else %} diff --git a/lightweight/templates/menu.html b/lightweight/templates/menu.html index 2e4702f..7ef9755 100644 --- a/lightweight/templates/menu.html +++ b/lightweight/templates/menu.html @@ -1,7 +1,7 @@ <nav id="menu"> <a href="{{ SITEURL }}/index.html">Accueil</a> {% if DISPLAY_PAGES_ON_MENU != False%} - {% for p in PAGES %} + {% for p in pages %} <a {% if p == page %}class="active" {% endif %}href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a> {% endfor %} {% else %} diff --git a/mnmlist/templates/base.html b/mnmlist/templates/base.html index 30b2c0b..61533c4 100644 --- a/mnmlist/templates/base.html +++ b/mnmlist/templates/base.html @@ -29,7 +29,7 @@ <footer> <nav> <ul> - {% for page in PAGES %} + {% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a>{% if not loop.last %} ::{% endif %}</li> {% endfor %} {% if categories|length > 1 %} diff --git a/monospace/templates/base.html b/monospace/templates/base.html index fa9c1e9..40d111e 100644 --- a/monospace/templates/base.html +++ b/monospace/templates/base.html @@ -43,7 +43,7 @@ <div id="footer"> <nav> <ul> - {% for page in PAGES %} + {% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a>{% if not loop.last %} ::{% endif %}</li> {% endfor %} {% if categories|length > 1 %} diff --git a/new-bootstrap2/templates/base.html b/new-bootstrap2/templates/base.html index 3d99da2..d45abde 100644 --- a/new-bootstrap2/templates/base.html +++ b/new-bootstrap2/templates/base.html @@ -69,7 +69,7 @@ <li><a href="{{ link }}">{{ title }}</a></li> {% endfor %} {% if DISPLAY_PAGES_ON_MENU %} - {% for gpage in PAGES %} + {% for gpage in pages %} <li {% if page == gpage %}class="active"{% endif %}><a href="{{ SITEURL }}/{{ gpage.url }}">{{ gpage.title }}</a></li> {% endfor %} <li class="divider-vertical"></li> diff --git a/new-bootstrap2/templates/index.html b/new-bootstrap2/templates/index.html index 4d11a80..cbef204 100644 --- a/new-bootstrap2/templates/index.html +++ b/new-bootstrap2/templates/index.html @@ -43,11 +43,11 @@ </div> {# {% else %} - {% if PAGES %} + {% if pages %} <section id="content" class="body"> <h3>Pages</h3> <ul class="nav nav-list"> - {% for page in PAGES %} + {% for page in pages %} <li><div><i class="icon-external-link"></i><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></div></li> {% endfor %} </ul> diff --git a/nmnlist/templates/base.html b/nmnlist/templates/base.html index ccbe1ba..9f028e9 100644 --- a/nmnlist/templates/base.html +++ b/nmnlist/templates/base.html @@ -29,7 +29,7 @@ <footer> <nav> <ul> - {% for page in PAGES %} + {% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a>{% if not loop.last %} ::{% endif %}</li> {% endfor %} {% if categories|length > 1 %} diff --git a/notebook/templates/base.html b/notebook/templates/base.html index 5483e93..c77cd93 100644 --- a/notebook/templates/base.html +++ b/notebook/templates/base.html @@ -45,10 +45,10 @@ {% for title, link in MENUITEMS %} <li><a href="{{ link }}">{{ title }}</a></li> {% endfor %} - {% if DISPLAY_PAGES_ON_MENU and PAGES %} + {% if DISPLAY_PAGES_ON_MENU and pages %} <h2>Pages</h2> <ul class="navbar"> - {% for p in PAGES %} + {% for p in pages %} <li><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li> {% endfor %} </ul> diff --git a/notmyidea-cms-fr/templates/base.html b/notmyidea-cms-fr/templates/base.html index 5e6d291..ee509c3 100644 --- a/notmyidea-cms-fr/templates/base.html +++ b/notmyidea-cms-fr/templates/base.html @@ -33,7 +33,7 @@ {% if DISPLAY_PAGES_ON_MENU != False %} <li><a href="{{ SITEURL }}/index.html">Accueil</a></li> <li><a href="{{ SITEURL }}/archives.html">Archives</a></li> - {% for p in PAGES %} + {% for p in pages %} <li {% if p == page %}class="active"{% endif %}><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li> {% endfor %} {% endif %} diff --git a/notmyidea-cms-fr/templates/index.html b/notmyidea-cms-fr/templates/index.html index d96a161..ec455a0 100644 --- a/notmyidea-cms-fr/templates/index.html +++ b/notmyidea-cms-fr/templates/index.html @@ -58,7 +58,7 @@ {% else %} <section id="content" class="body"> <h2>Pages</h2> -{% for page in PAGES %} +{% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </section> diff --git a/notmyidea-cms/templates/base.html b/notmyidea-cms/templates/base.html index 4d92ec2..d281c0f 100644 --- a/notmyidea-cms/templates/base.html +++ b/notmyidea-cms/templates/base.html @@ -33,7 +33,7 @@ </li> {% endfor %} {% if DISPLAY_PAGES_ON_MENU != False %} - {% for p in PAGES %} + {% for p in pages %} <li {% if p == page %}class="active"{% endif %}><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li> {% endfor %} {% endif %} diff --git a/notmyidea-cms/templates/index.html b/notmyidea-cms/templates/index.html index 5e1e676..c97ff7d 100644 --- a/notmyidea-cms/templates/index.html +++ b/notmyidea-cms/templates/index.html @@ -35,7 +35,7 @@ {% else %} <section id="content" class="body"> <h2>Pages</h2> -{% for page in PAGES %} +{% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </section> diff --git a/photowall/templates/base.html b/photowall/templates/base.html index ed1707a..b68a018 100644 --- a/photowall/templates/base.html +++ b/photowall/templates/base.html @@ -39,7 +39,7 @@ function greyon(img) <li><a href="{{ link }}">{{ title }}</a></li> {% endfor %} {% if DISPLAY_PAGES_ON_MENU -%} - {% for pg in PAGES %} + {% for pg in pages %} <li{% if pg == page %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ pg.url }}">{{ pg.title }}</a></li> {% endfor %} {% endif %} diff --git a/photowall/templates/index.html b/photowall/templates/index.html index 9abd15b..56add9f 100644 --- a/photowall/templates/index.html +++ b/photowall/templates/index.html @@ -27,7 +27,7 @@ {% else %} <section id="content" class="body"> <h2>Pages</h2> - {% for page in PAGES %} + {% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </section> diff --git a/simple-bootstrap/templates/base.html b/simple-bootstrap/templates/base.html index d9c71b9..33ae7f8 100755 --- a/simple-bootstrap/templates/base.html +++ b/simple-bootstrap/templates/base.html @@ -39,7 +39,7 @@ <div class="header"> <ul class="nav nav-pills pull-right"> <li class="{% block navclass %}{{ NAVCLASS }}{% endblock navclass %}"><a href="{{ SITEURL }}">Home</a></li> - {% for p in PAGES %} + {% for p in pages %} <li{% if p == page %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li> {% endfor %} <li{% if author or tag %} class="active"{% endif %}{% block archclass %}{{ ARCHCLASS }}{% endblock archclass %}><a href="{{ SITEURL }}/archives.html">Archives</a></li> diff --git a/sneakyidea/templates/base.html b/sneakyidea/templates/base.html index dcd9239..9e885f0 100644 --- a/sneakyidea/templates/base.html +++ b/sneakyidea/templates/base.html @@ -31,7 +31,7 @@ <h1><a href="{{ SITEURL }}">{{ SITENAME }} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a></h1> <nav><ul> {% if DISPLAY_PAGES_ON_MENU %} - {% for current_page in PAGES %} + {% for current_page in pages %} <li {% if page %}{% if page == current_page%}class="active"{% endif %}{% endif %}> <a href="{{ SITEURL }}/{{ current_page.url }}">{{ current_page.title }}</a> </li> diff --git a/sneakyidea/templates/index.html b/sneakyidea/templates/index.html index 9b7dfa9..c3b359a 100644 --- a/sneakyidea/templates/index.html +++ b/sneakyidea/templates/index.html @@ -38,7 +38,7 @@ {% else %} <section id="content" class="body"> <h2>Pages</h2> -{% for page in PAGES %} +{% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </section> diff --git a/subtle/templates/base.html b/subtle/templates/base.html index 64584c8..8c355a0 100755 --- a/subtle/templates/base.html +++ b/subtle/templates/base.html @@ -27,7 +27,7 @@ <li><a href="{{ link }}">{{ title }}</a></li> {% 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 %} diff --git a/subtle/templates/index.html b/subtle/templates/index.html index 6413c43..ad9d090 100755 --- a/subtle/templates/index.html +++ b/subtle/templates/index.html @@ -52,7 +52,7 @@ {% else %} <section id="content" class="body"> <h2>Pages</h2> - {% for page in PAGES %} + {% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </section> diff --git a/syte/templates/base.html b/syte/templates/base.html index 9e2e52e..1cb03c0 100644 --- a/syte/templates/base.html +++ b/syte/templates/base.html @@ -32,7 +32,7 @@ {% endif %} {% if DISPLAY_PAGES_ON_MENU %} - {% for current_page in PAGES %} + {% for current_page in pages %} <li><a href="{{ SITEURL }}/{{ current_page.url }}">{{ current_page.title }}</a></li> {% endfor %} {% endif %} 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 %} diff --git a/waterspill-en/templates/base.html b/waterspill-en/templates/base.html index a60034e..dd7962d 100644 --- a/waterspill-en/templates/base.html +++ b/waterspill-en/templates/base.html @@ -55,7 +55,7 @@ <li> <h3>Pages</h3> <ul> - {% for page in PAGES %} + {% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </ul> diff --git a/waterspill/templates/base.html b/waterspill/templates/base.html index a95fdcc..c4a9c07 100644 --- a/waterspill/templates/base.html +++ b/waterspill/templates/base.html @@ -45,7 +45,7 @@ {% if DISPLAY_PAGES_ON_MENU %} <h3>Pages</h3> <ul> - {% for page in PAGES %} + {% for page in pages %} <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </ul> diff --git a/zurb-F5-basic/templates/base.html b/zurb-F5-basic/templates/base.html index 91fb81a..0ade6fd 100644 --- a/zurb-F5-basic/templates/base.html +++ b/zurb-F5-basic/templates/base.html @@ -34,7 +34,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/zurb-F5-basic/templates/index.html b/zurb-F5-basic/templates/index.html index 6e632dc..f6c8e52 100644 --- a/zurb-F5-basic/templates/index.html +++ b/zurb-F5-basic/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 %} |