From 0db926a6c7ff99f3459dd3cee6359fcb93d146c3 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Sat, 6 May 2017 16:48:55 +0200 Subject: [PATCH] Fix empty page listing for default/notmyidea theme (issue #2097) --- pelican/themes/notmyidea/templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pelican/themes/notmyidea/templates/index.html b/pelican/themes/notmyidea/templates/index.html index 6019987b..20ca7eee 100644 --- a/pelican/themes/notmyidea/templates/index.html +++ b/pelican/themes/notmyidea/templates/index.html @@ -51,7 +51,7 @@ {% else %}

Pages

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