Skip to content
This repository has been archived by the owner on Apr 17, 2021. It is now read-only.

Commit

Permalink
fix missing previous_title and next_title in template
Browse files Browse the repository at this point in the history
  • Loading branch information
robbyt committed Jun 17, 2013
1 parent 326f647 commit bc46603
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<ul class="pager">
{% if page.has_previous %}
<li{% if not centered %} class="previous"{% endif %}>
<a title="Previous Page" href="{{ previous_page_url|default:"#" }}">{{previous_label}}</a>
<a title="{{ previous_title }}" href="{{ previous_page_url|default:"#" }}">{{ previous_label }}</a>
</li>
{% endif %}
{% if page.has_next %}
<li{% if not centered %} class="next"{% endif %}>
<a title="Next Page" href="{{ next_page_url|default:"#" }}">{{next_label}}</a>
<a title="{{ next_title }}" href="{{ next_page_url|default:"#" }}">{{ next_label }}</a>
</li>
{% endif %}
</ul>
</ul>

0 comments on commit bc46603

Please sign in to comment.