Skip to content

Commit

Permalink
Fixing links
Browse files Browse the repository at this point in the history
  • Loading branch information
Erica Kwan committed Jun 23, 2011
1 parent 888feb8 commit 71b4909
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Expand Up @@ -20,10 +20,10 @@ <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
{% if paginator.previous_page == 1 %}
<a class="pagination newer" href="/" title="newer"> Newer &rarr;</a>
{% else %}
<a class="pagination older" href="page{{ paginator.previous_page }}/index.html" title="newer"> Newer &rarr;</a>
<a class="pagination older" href="/page{{ paginator.previous_page }}" title="newer"> Newer &rarr;</a>
{% endif %}
{% endif %}
{% if paginator.next_page %}
<a class="pagination" href="page{{ paginator.next_page }}/index.html" title="older">&larr; Older</a>
<a class="pagination" href="/page{{ paginator.next_page }}" title="older">&larr; Older</a>
{% endif %}
</div>

0 comments on commit 71b4909

Please sign in to comment.