moving the pagination to the bottom of the page

This commit is contained in:
manetta 2022-04-22 22:04:05 +02:00
parent 5fec8ed33d
commit 1541fc2ff6

View File

@ -19,10 +19,6 @@
{% block content_title %} {% block content_title %}
{% endblock %} {% endblock %}
{% if articles_page.has_other_pages() %}
{% include 'pagination.html' %}
{% endif %}
<div id="post-list"> <div id="post-list">
{% for article in articles_page.object_list %} {% for article in articles_page.object_list %}
{% set thumb_size = '/thumb' %} {% set thumb_size = '/thumb' %}
@ -113,5 +109,10 @@
{% endfor %} {% endfor %}
</div><!-- /#posts-list --> </div><!-- /#posts-list -->
{% if articles_page.has_other_pages() %}
{% include 'pagination.html' %}
{% endif %}
</section><!-- /#content --> </section><!-- /#content -->
{% endblock content %} {% endblock content %}