Browse Source

Update 'themes/varia/templates/pagination.html'

fixed pagination for the English language, by removing siteurl
master
crunk 2 years ago
parent
commit
0609bc9791
  1. 4
      themes/varia/templates/pagination.html

4
themes/varia/templates/pagination.html

@ -1,11 +1,11 @@
{% if DEFAULT_PAGINATION %}
<p class="paginator">
{% if articles_page.has_previous() %}
<a href="{{ SITEURL }}/{{ articles_previous_page.url }}">&laquo;</a>
<a href="/{{ articles_previous_page.url }}">&laquo;</a>
{% endif %}
Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}
{% if articles_page.has_next() %}
<a href="{{ SITEURL }}/{{ articles_next_page.url }}">&raquo;</a>
<a href="/{{ articles_next_page.url }}">&raquo;</a>
{% endif %}
</p>
{% endif %}

Loading…
Cancel
Save