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" %}
       &#124; <a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a>
       {% endif %}