issue 770 - trailing slashes missing from archive links

Signed-off-by: Darrin Mison <dmison@me.com>
This commit is contained in:
Darrin Mison 2012-09-21 16:42:07 +10:00
parent c1a0d4ba52
commit 62c58ad6cf
3 changed files with 3 additions and 3 deletions

View File

@ -5,4 +5,4 @@ title: Page Not Found
Oops, I couldn't find that page! Sorry about that.
Maybe try the search box (top right), or look through the [archives](/archives)?
Maybe try the search box (top right), or look through the [archives](/archives/)?

View File

@ -1,4 +1,4 @@
<ul class="main-navigation">
<li><a href="{{ root_url }}/">Blog</a></li>
<li><a href="{{ root_url }}/archives">Archives</a></li>
<li><a href="{{ root_url }}/archives/">Archives</a></li>
</ul>

View File

@ -13,7 +13,7 @@ layout: default
{% if paginator.next_page %}
<a class="prev" href="{{paginator.next_page}}">&larr; Older</a>
{% endif %}
<a href="/archives">Blog Archives</a>
<a href="/archives/">Blog Archives</a>
{% if paginator.previous_page %}
<a class="next" href="{{paginator.previous_page}}">Newer &rarr;</a>
{% endif %}