diff --git a/theme/templates/category.html b/theme/templates/category.html
index a0c8023..f634709 100644
--- a/theme/templates/category.html
+++ b/theme/templates/category.html
@@ -1,7 +1,7 @@
{% extends '_article_list.html' %}
{% import '_lib.html' as lib with context %}
-{% block title %}{{ category.name }} / {{ SITENAME }}{% endblock %}
+{% block title %}{{ category.name }}{% if articles_page.number != 1 %} / page {{ articles_page.number }}{% endif %} / {{ SITENAME }}{% endblock %}
{% block content %}
diff --git a/theme/templates/index.html b/theme/templates/index.html
index eaa4bbc..bd05392 100644
--- a/theme/templates/index.html
+++ b/theme/templates/index.html
@@ -1,5 +1,5 @@
{% extends '_article_list.html' %}
-{% block title %}{{ SITENAME }}{% endblock %}
+{% block title %}{{ SITENAME }}{% if articles_page.number != 1 %} / page {{ articles_page.number }}{% endif %}{% endblock %}
{% block content %}
diff --git a/theme/templates/tag.html b/theme/templates/tag.html
index 4c3eb6c..65a4ec4 100644
--- a/theme/templates/tag.html
+++ b/theme/templates/tag.html
@@ -1,6 +1,6 @@
{% extends '_article_list.html' %}
-{% block title %}🔖 {{ tag.name }} / {{ SITENAME }}{% endblock %}
+{% block title %}🔖 {{ tag.name }}{% if articles_page.number != 1 %} / page {{ articles_page.number }}{% endif %} / {{ SITENAME }}{% endblock %}
{% block content %}
Tagged: {{ tag.name }}