Chapter 9

This commit is contained in:
2023-06-04 02:57:16 +02:00
parent c91b89da5f
commit 44e46135a6
5 changed files with 84 additions and 17 deletions

View File

@@ -41,4 +41,10 @@
{% for post in posts %}
{% include '_post.html' %}
{% endfor %}
{% if prev_url %}
<a href="{{ prev_url }}">Newer posts</a>
{% endif %}
{% if next_url %}
<a href="{{ next_url }}">Older posts</a>
{% endif %}
{% endblock %}