diff --git a/game/templates/game/base.html b/game/templates/game/base.html
index f8f20cc1d..faacf2d43 100644
--- a/game/templates/game/base.html
+++ b/game/templates/game/base.html
@@ -14,7 +14,13 @@
{% endblock %}
-{% block title %}Code for Life - Rapid Router{% endblock %}
+{% block title %}
+ {% if "rapidrouter" in request.path %}
+ Code for Life - Rapid Router
+ {% else %}
+ Code for Life - Python Den
+ {% endif %}
+{% endblock %}
{% block head %}
{% include 'game/crowdin.html' %}
diff --git a/game/templates/game/basenonav.html b/game/templates/game/basenonav.html
index 864dff384..2b9d7c96e 100644
--- a/game/templates/game/basenonav.html
+++ b/game/templates/game/basenonav.html
@@ -15,7 +15,13 @@
{% endblock css %}
-{% block title %}Code for Life - Rapid Router{% endblock %}
+{% block title %}
+ {% if "rapidrouter" in request.path %}
+ Code for Life - Rapid Router
+ {% else %}
+ Code for Life - Python Den
+ {% endif %}
+{% endblock %}
{% block topBar %}
{% endblock topBar %}