mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
Fix prev/next links for old status update posts
This commit is contained in:
@@ -22,11 +22,11 @@
|
|||||||
{% block after_main %}
|
{% block after_main %}
|
||||||
<hr>
|
<hr>
|
||||||
<div class="PageNavigation">
|
<div class="PageNavigation">
|
||||||
{% if page.earlier %}
|
{% if page.lower %}
|
||||||
<a class="prev" href="{{ page.earlier.path | safe }}">« {{ page.earlier.title }}</a>
|
<a class="prev" href="{{ page.lower.path | safe }}">« {{ page.lower.title }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if page.later %}
|
{% if page.higher %}
|
||||||
<a class="next" href="{{ page.later.path | safe }}">{{ page.later.title }} »</a>
|
<a class="next" href="{{ page.higher.path | safe }}">{{ page.higher.title }} »</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
<hr>
|
||||||
|
|||||||
Reference in New Issue
Block a user