diff options
author | Justin Mayer <entroP@gmail.com> | 2017-12-03 15:05:51 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-03 15:05:51 -0800 |
commit | 2066cb022da2ed06a6ed035b99f960f2034aa415 (patch) | |
tree | e22f34dbb71b191a161818b6d6200c0fc12de4e4 /graymill | |
parent | 808426e286879f25c87b0a6b8f2ccd6da5d07fe2 (diff) | |
parent | 281089fcd1f22e4553f1adeed5b0210367b80542 (diff) | |
download | pelican-themes-2066cb022da2ed06a6ed035b99f960f2034aa415.tar.gz |
Merge pull request #574 from rn4ir/graymill-update
Graymill: Change 'pages' variable to lower-case
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 %} |