diff --git a/lms/templates/courseware.html b/lms/templates/courseware.html
index 92c6c9707c..9aa1836e93 100644
--- a/lms/templates/courseware.html
+++ b/lms/templates/courseware.html
@@ -1,7 +1,7 @@
<%inherit file="main.html" />
<%namespace name='static' file='static_content.html'/>
<%block name="bodyclass">courseware%block>
-<%block name="title">
Courseware – MITx 6.002x%block>
+<%block name="title">${course.number} Courseware%block>
<%block name="headextra">
<%static:css group='course'/>
diff --git a/lms/templates/info.html b/lms/templates/info.html
index a04e31896f..a2b94a2b98 100644
--- a/lms/templates/info.html
+++ b/lms/templates/info.html
@@ -5,6 +5,8 @@
<%static:css group='course'/>
%block>
+<%block name="title">${course.number} Course Info%block>
+
<%include file="course_navigation.html" args="active_page='info'" />
<%!
from courseware.courses import get_course_info_section
diff --git a/lms/templates/progress.html b/lms/templates/progress.html
index 5ce86d04c2..d9608d7cea 100644
--- a/lms/templates/progress.html
+++ b/lms/templates/progress.html
@@ -7,7 +7,7 @@
<%namespace name="profile_graphs" file="profile_graphs.js"/>
-<%block name="title">Progress - edX 6.002x%block>
+<%block name="title">${course.number} Progress%block>
<%!
from django.core.urlresolvers import reverse