summaryrefslogtreecommitdiffstats
path: root/templates/activities/home.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/activities/home.html')
-rw-r--r--templates/activities/home.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/activities/home.html b/templates/activities/home.html
index 06fa88c..8d9d39c 100644
--- a/templates/activities/home.html
+++ b/templates/activities/home.html
@@ -24,11 +24,11 @@
<div class="pagination">
{% if page_obj.has_previous %}
- <div class="load-more"><a class="button" href=".?page={{ page_obj.previous_page_number }}">Previous Page</a></div>
+ <a class="button" href=".?page={{ page_obj.previous_page_number }}">Previous Page</a>
{% endif %}
{% if page_obj.has_next %}
- <div class="load-more"><a class="button" href=".?page={{ page_obj.next_page_number }}">Next Page</a></div>
+ <a class="button" href=".?page={{ page_obj.next_page_number }}">Next Page</a>
{% endif %}
</div>
{% endblock %}