From 18e518185493fc009da96e67b07dc856d852b27c Mon Sep 17 00:00:00 2001
From: "M. Taylor Saotome-Westlake" <ultimatelyuntruethought@gmail.com>
Date: Fri, 8 Sep 2017 19:03:11 -0700
Subject: [PATCH] Pelican 3.7 changes `PAGES` to `pages`

---
 theme/templates/base.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/theme/templates/base.html b/theme/templates/base.html
index cc65f94..ecf6bc8 100644
--- a/theme/templates/base.html
+++ b/theme/templates/base.html
@@ -35,9 +35,9 @@
             <a href="{{ SITEURL }}/{{ FEED_ALL_RSS }}" rel="alternate"><img src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/feed-32px.png" alt="rss feed"/></a>
           {% endif %}
 	    </div>
-	    {% if PAGES %}
+	    {% if pages %}
 	      <nav class="pages">
-	        {% for p in PAGES %}
+	        {% for p in pages %}
 			  <a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a>
 			  {% if not loop.last %}-{% endif %}
 			{% endfor %}
-- 
2.17.1