commit | a8cd09426ccbc12034240d9cc7c6e79311fe0b80 | [log] [tgz] |
---|---|---|
author | Carey Metcalfe <carey@cmetcalfe.ca> | Sun Aug 30 21:36:50 2015 -0400 |
committer | Carey Metcalfe <carey@cmetcalfe.ca> | Sun Aug 30 21:36:50 2015 -0400 |
tree | 575e3243cc0fb42c7760da2ae5a927117b2c9084 | |
parent | 07235a2e21ae10ab096d59cfebc4c8d18db5119d [diff] | |
parent | dbadbb99691cedb1a9849b368bb27e0c81a15212 [diff] |
Merge pull request #25 from codito/fix-page-sort Use the default sort order of pages in base template. Fix #23.
diff --git a/templates/base.html b/templates/base.html index 8e30b5d..941d77a 100644 --- a/templates/base.html +++ b/templates/base.html
@@ -120,7 +120,7 @@ <p id="header"> <a href="{{ SITEURL }}">Home</a> - {% for p in pages|sort %} + {% for p in pages %} {% if p.url != "index.html" %} | <a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a> {% endif %}