fix pagination arrow

This commit is contained in:
Chen Jian 2016-03-25 00:45:12 +08:00
parent 911b8ec25c
commit bb75fe5020
1 changed files with 3 additions and 3 deletions

View File

@ -3,12 +3,12 @@
<!-- Pager -->
<ul class="pager">
<li class="next">
{% if articles_page.has_previous() %}
<a href="{{ SITEURL }}/{{ articles_previous_page.url }}">Newest Posts &rarr;</a>
{% endif %}
{% if articles_page.has_next() %}
<a href="{{ SITEURL }}/{{ articles_next_page.url }}">Older Posts &rarr;</a>
{% endif %}
{% if articles_page.has_previous() %}
<a href="{{ SITEURL }}/{{ articles_previous_page.url }}"> &larr; Newest Posts</a>
{% endif %}
</li>
</ul>
Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}