Use "Newer" and "Older" as pagination labels
This commit is contained in:
parent
9d34559cc9
commit
d59e8dbc15
|
@ -33,14 +33,14 @@ permalink: "/{{ page.fileSlug }}{% if pagination.pageNumber > 0 %}/page/{{ pagin
|
||||||
|
|
||||||
<p class="center-text">
|
<p class="center-text">
|
||||||
{% if pagination.href.previous %}
|
{% if pagination.href.previous %}
|
||||||
<a href=" {{ pagination.href.previous }}">Previous</a>
|
<a href=" {{ pagination.href.previous }}">Newer</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
Previous
|
Newer
|
||||||
{% endif %}
|
{% endif %}
|
||||||
/
|
/
|
||||||
{% if pagination.href.next %}
|
{% if pagination.href.next %}
|
||||||
<a href=" {{ pagination.href.next }}">Next</a>
|
<a href=" {{ pagination.href.next }}">Older</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
Next
|
Older
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -24,14 +24,14 @@ permalink: "/{{ page.fileSlug }}{% if pagination.pageNumber > 0 %}/page/{{ pagin
|
||||||
|
|
||||||
<p class="center-text">
|
<p class="center-text">
|
||||||
{% if pagination.href.previous %}
|
{% if pagination.href.previous %}
|
||||||
<a href=" {{ pagination.href.previous }}">Previous</a>
|
<a href=" {{ pagination.href.previous }}">Newer</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
Previous
|
Newer
|
||||||
{% endif %}
|
{% endif %}
|
||||||
/
|
/
|
||||||
{% if pagination.href.next %}
|
{% if pagination.href.next %}
|
||||||
<a href=" {{ pagination.href.next }}">Next</a>
|
<a href=" {{ pagination.href.next }}">Older</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
Next
|
Older
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</p>
|
</p>
|
||||||
|
|
Loading…
Reference in New Issue