diff options
author | rn4ir <rn@rahul-nair.com> | 2017-11-23 22:32:57 -0500 |
---|---|---|
committer | rn4ir <rn@rahul-nair.com> | 2017-11-23 22:32:57 -0500 |
commit | 281089fcd1f22e4553f1adeed5b0210367b80542 (patch) | |
tree | d5a79d3442bb4fe37dea5a0744defbe290666c0c /graymill | |
parent | e7d1f34e8e11b5d0c26821b1562b12f71b6bb1bf (diff) | |
download | pelican-themes-281089fcd1f22e4553f1adeed5b0210367b80542.tar.gz |
Fixed 'pages' variable
Diffstat (limited to 'graymill')
-rw-r--r-- | graymill/templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graymill/templates/base.html b/graymill/templates/base.html index 55fc051..7e4a224 100644 --- a/graymill/templates/base.html +++ b/graymill/templates/base.html @@ -61,7 +61,7 @@ <li><a href="{{ link }}">{{ title }}</a></li> {% endfor %} - {% if DISPLAY_PAGES_ON_MENU and PAGES %} + {% if DISPLAY_PAGES_ON_MENU and pages %} {% for p in pages %} <li><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li> {% endfor %} |