diff options
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/templates/base.html b/templates/base.html index 75ef425..e1dd592 100644 --- a/templates/base.html +++ b/templates/base.html @@ -36,11 +36,18 @@ </head> <body> - <div id="header" class="body"> - <div id="navigation"> - {% block menu %} - {% endblock %} - </div> + <div id="header" class="body"> + <div id="navigation"> + {% block home %} + {% endblock %} + {% block menu %} + {% for p in pages %} + | <a href="{{ SITEURL}}/{{p.url}}">{{p.title}}</a> | + {% endfor %} + | <a href="{{ SITEURL }}/categories.html">Categories</a> | + | <a href="{{ SITEURL }}/tags.html">Tags</a> | + {% endblock %} + </div> {% block article %} {% endblock %} {% block page %} |