diff options
author | Adam Matan <adam@matan.name> | 2017-03-07 20:01:35 +0200 |
---|---|---|
committer | Adam Matan <adam@matan.name> | 2017-03-07 20:01:35 +0200 |
commit | e1bd3488e60362f05d5e63adf73b10a7c3932124 (patch) | |
tree | 5bf68fd7311072f64f0abc660faac1bb3ad969d8 /notmyidea-cms | |
parent | ef412e6bd0a9e0e93bb3ae377725b41c63d49a49 (diff) | |
download | pelican-themes-e1bd3488e60362f05d5e63adf73b10a7c3932124.tar.gz |
Replace 'PAGES' with 'pages' across all themes
Solving http://docs.getpelican.com/en/latest/faq.html\#since-i-upgraded-pelican-my-pages-are-no-longer-rendered
And https://github.com/getpelican/pelican-themes/issues/437
Diffstat (limited to 'notmyidea-cms')
-rw-r--r-- | notmyidea-cms/templates/base.html | 2 | ||||
-rw-r--r-- | notmyidea-cms/templates/index.html | 2 |
2 files changed, 2 insertions, 2 deletions
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> |