diff options
Diffstat (limited to 'waterspill/templates')
-rw-r--r-- | waterspill/templates/base.html | 2 | ||||
-rw-r--r-- | waterspill/templates/page.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/waterspill/templates/base.html b/waterspill/templates/base.html index 1f9049d..1f72a5c 100644 --- a/waterspill/templates/base.html +++ b/waterspill/templates/base.html @@ -46,7 +46,7 @@ <h3>Pages</h3> <ul> {% for page in PAGES %} - <li><a href="{{ SITEURL }}/pages/{{ page.url }}">{{ page.title }}</a></li> + <li><a href="{{ SITEURL }}{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </ul> {% endif %} diff --git a/waterspill/templates/page.html b/waterspill/templates/page.html index f9a091a..8f2f691 100644 --- a/waterspill/templates/page.html +++ b/waterspill/templates/page.html @@ -3,7 +3,7 @@ {% block content %} <div class="blogItem"> - <h2><a href="{{ SITEURL }}/pages/{{ page.url }}">{{ page.title }}</a></h3> + <h2><a href="{{ SITEURL }}{{ page.url }}">{{ page.title }}</a></h3> {{ page.content }} {% include 'twitter.html' %} |