diff --git a/bookwyrm/templates/feed/layout.html b/bookwyrm/templates/feed/layout.html
index 16a868c2a..b70ed99ea 100644
--- a/bookwyrm/templates/feed/layout.html
+++ b/bookwyrm/templates/feed/layout.html
@@ -23,7 +23,7 @@
{% block panel %}{% endblock %}
{% if activities %}
- {% include 'snippets/pagination.html' with page=activities path=path anchor="#feed" %}
+ {% include 'snippets/pagination.html' with page=activities path=path anchor="#feed" mode="chronological" %}
{% endif %}
diff --git a/bookwyrm/templates/snippets/pagination.html b/bookwyrm/templates/snippets/pagination.html
index 85f966f50..5ab724c06 100644
--- a/bookwyrm/templates/snippets/pagination.html
+++ b/bookwyrm/templates/snippets/pagination.html
@@ -9,7 +9,11 @@
{% endif %}>
- {% trans "Older" %}
+ {% if mode == "chronological" %}
+ {% trans "Newer" %}
+ {% else %}
+ {% trans "Previous" %}
+ {% endif %}
- {% trans "Newer" %}
+ {% if mode == "chronological" %}
+ {% trans "Older" %}
+ {% else %}
+ {% trans "Next" %}
+ {% endif %}