From e1bd3488e60362f05d5e63adf73b10a7c3932124 Mon Sep 17 00:00:00 2001 From: Adam Matan Date: Tue, 7 Mar 2017 20:01:35 +0200 Subject: 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 --- notmyidea-cms-fr/templates/base.html | 2 +- notmyidea-cms-fr/templates/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'notmyidea-cms-fr/templates') 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 %}
  • Accueil
  • Archives
  • - {% for p in PAGES %} + {% for p in pages %}
  • {{ p.title }}
  • {% 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 %}

    Pages

    -{% for page in PAGES %} +{% for page in pages %}
  • {{ page.title }}
  • {% endfor %}
    -- cgit