Skip to content

Commit

Permalink
Replace 'PAGES' with 'pages' across all themes
Browse files Browse the repository at this point in the history
  • Loading branch information
adamatan committed Mar 7, 2017
1 parent ef412e6 commit e1bd348
Show file tree
Hide file tree
Showing 46 changed files with 51 additions and 51 deletions.
2 changes: 1 addition & 1 deletion Just-Read/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h1 class="huge"><a href="{{ SITEURL }}">{{ SITENAME }}</a></h1>
<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>
Expand Down
2 changes: 1 addition & 1 deletion SoMA/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h1 class="entry-title"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.tit
<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>
Expand Down
2 changes: 1 addition & 1 deletion SoMA2/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h1 class="entry-title"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.tit
<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>
Expand Down
2 changes: 1 addition & 1 deletion aboutwilson/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ <h4>Navigation</h4>
<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 %}
Expand Down
4 changes: 2 additions & 2 deletions bootlex/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down
2 changes: 1 addition & 1 deletion bootstrap2-dark/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
4 changes: 2 additions & 2 deletions bootstrap2-dark/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ <h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
</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>
Expand Down
2 changes: 1 addition & 1 deletion bootstrap2/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
4 changes: 2 additions & 2 deletions bootstrap2/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ <h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
</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>
Expand Down
2 changes: 1 addition & 1 deletion bricabrac/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down
2 changes: 1 addition & 1 deletion brownstone/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h1><a href="{{ SITEURL }}">{{ SITENAME }}</a></h1>
<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 %}
Expand Down
2 changes: 1 addition & 1 deletion built-texts/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down
2 changes: 1 addition & 1 deletion cebong/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ <h1><a href="{{ SITEURL }}">{{ SITENAME }} {% if SITESUBTITLE %} <strong>{{ SITE
<a href="{{ link }}">{{ title }}</a>&nbsp;
{% endfor %}
{% if DISPLAY_PAGES_ON_MENU %}
{% for page in PAGES %}
{% for page in pages %}
<a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a>&nbsp;
{% endfor %}
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion cebong/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h3><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"
{% 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>
Expand Down
2 changes: 1 addition & 1 deletion dev-random/templates/includes/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h3>Site</h3>
{% 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 %}
Expand Down
2 changes: 1 addition & 1 deletion dev-random2/templates/includes/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h3>Pages</h3>
{% 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 %}
Expand Down
2 changes: 1 addition & 1 deletion foundation-default-colours/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ <h1><a href="{{ SITEURL }}/">{{ SITENAME }}</a></h1>
{% 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 %}····
Expand Down
2 changes: 1 addition & 1 deletion franticworld/templates/sidebar.html
Original file line number Diff line number Diff line change
@@ -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>
<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>
Expand Down
2 changes: 1 addition & 1 deletion gum/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ <h1><a href="{{ SITEURL }}/">{{ SITENAME }} <strong>{{ SITESUBTITLE }}</strong><
<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 %}
Expand Down
2 changes: 1 addition & 1 deletion gum/templates/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h4>Pages</h4>
<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 %}
Expand Down
2 changes: 1 addition & 1 deletion lightweight/templates/menu.html
Original file line number Diff line number Diff line change
@@ -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 %}
Expand Down
2 changes: 1 addition & 1 deletion mnmlist/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down
2 changes: 1 addition & 1 deletion monospace/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h1><a href="{{ SITEURL }} " title="title">{{ SITENAME }}</a></h1>
<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 %}
Expand Down
2 changes: 1 addition & 1 deletion new-bootstrap2/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
4 changes: 2 additions & 2 deletions new-bootstrap2/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ <h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
</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>
Expand Down
2 changes: 1 addition & 1 deletion nmnlist/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down
4 changes: 2 additions & 2 deletions notebook/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ <h2>Social</h2>
{% 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>
Expand Down
2 changes: 1 addition & 1 deletion notmyidea-cms-fr/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h1><a href="{{ SITEURL }}/index.html">{{ SITENAME }} {% if SITESUBTITLE %} <str
{% 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 %}
Expand Down
2 changes: 1 addition & 1 deletion notmyidea-cms-fr/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ <h1><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalien ve
{% 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>
Expand Down
2 changes: 1 addition & 1 deletion notmyidea-cms/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h1><a href="{{ SITEURL }}/index.html">{{ SITENAME }} {% if SITESUBTITLE %} <str
</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 %}
Expand Down
2 changes: 1 addition & 1 deletion notmyidea-cms/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ <h1><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to
{% 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>
Expand Down
2 changes: 1 addition & 1 deletion photowall/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h1><a href="{{ SITEURL }}/">{{ SITENAME }} {% if SITESUBTITLE %} <strong>{{ SIT
<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 %}
Expand Down
2 changes: 1 addition & 1 deletion photowall/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion simple-bootstrap/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion sneakyidea/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion sneakyidea/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ <h1><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to
{% 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>
Expand Down
2 changes: 1 addition & 1 deletion subtle/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h1><a href="{{ SITEURL }}">{{ SITENAME }} {% if SITESUBTITLE %} <strong>{{ SITE
<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 %}
Expand Down
2 changes: 1 addition & 1 deletion subtle/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ <h1><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to
{% 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>
Expand Down
2 changes: 1 addition & 1 deletion syte/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h2>{{ ABOUT }}</h2>
{% 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 %}
Expand Down
2 changes: 1 addition & 1 deletion tuxlite_zf/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ <h1><a href="{{ SITEURL }}">{{ SITENAME }}</a></h1>
{% 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 %}
Expand Down
2 changes: 1 addition & 1 deletion tuxlite_zf/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}

Expand Down
Loading

0 comments on commit e1bd348

Please sign in to comment.