Revert "Relative links for everything"

This reverts commit ff484f854e.
This commit is contained in:
2020-05-31 21:59:18 +02:00
parent ff484f854e
commit d1f2eb2e21
10 changed files with 19 additions and 19 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
{% if DEFAULT_PAGINATION %}
<p class="paginator">
{% if articles_page.has_previous() %}
<a href="./{{ articles_previous_page.url }}">&laquo;</a>
<a href="{{ SITEURL }}/{{ articles_previous_page.url }}">&laquo;</a>
{% endif %}
Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}
{% if articles_page.has_next() %}
<a href="./{{ articles_next_page.url }}">&raquo;</a>
<a href="{{ SITEURL }}/{{ articles_next_page.url }}">&raquo;</a>
{% endif %}
</p>
{% endif %}