Merge pull request #771 from dmison/2.1-trailing_slashes_missing_from_archive_links

issue 770 - trailing slashes missing from archive links
This commit is contained in:
Brandon Mathis 2012-09-20 23:55:42 -07:00
commit 76ae3e0a9b
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. 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"> <ul class="main-navigation">
<li><a href="{{ root_url }}/">Blog</a></li> <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> </ul>

View File

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