diff options
author | Alexis Metaireau <alexis@notmyidea.org> | 2012-11-20 15:31:17 -0800 |
---|---|---|
committer | Alexis Metaireau <alexis@notmyidea.org> | 2012-11-20 15:31:17 -0800 |
commit | c3ecf17533a32561e77c023df469cab1c467ffe2 (patch) | |
tree | 836153128325b49472111a5158c72423588d3350 /waterspill/templates | |
parent | 6e7aad9d3d67229056c6d876384f73a17132718e (diff) | |
parent | ba5c5163ae8ba42d54c3b8b49d3045cd691ce37b (diff) | |
download | pelican-themes-c3ecf17533a32561e77c023df469cab1c467ffe2.tar.gz |
Merge pull request #49 from mmv/master
Fix worng url for "pages" on most templates.
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..a95fdcc 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..953cd5b 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' %} |