diff --git a/lms/templates/courses.html b/lms/templates/courses.html
index d7302565d9abcd03a0b033bb9783c6e706597bb7..78154974c83bb21625544bcc2871eb345fc1895c 100644
--- a/lms/templates/courses.html
+++ b/lms/templates/courses.html
@@ -2,6 +2,8 @@
 
 <%namespace name='static' file='static_content.html'/>
 
+<%block name="title"><title>Courses</title></%block>
+
 <section class="find-courses">
   <header class="search" style="background: url('/static/images/homepage_interns_placeholder_2025x550.jpg')">
     <div class="inner-wrapper main-search">
diff --git a/lms/templates/dashboard.html b/lms/templates/dashboard.html
index 9bf46781c90f2680768ae23cf3d3b4147a08878c..9a1784ba8d1d38196ce4634a7742cfa129039078 100644
--- a/lms/templates/dashboard.html
+++ b/lms/templates/dashboard.html
@@ -6,6 +6,8 @@
 
 <%namespace name='static' file='static_content.html'/>
 
+<%block name="title"><title>Dashboard</title></%block>
+
 <section class="container dashboard">
 
   <section class="profile-sidebar">
diff --git a/lms/templates/portal/course_about.html b/lms/templates/portal/course_about.html
index 95afcfd73c437ff30a5499c6a6cbe96186c54d70..67b4b00c71d54b1eec9542f18da8f0977dd624ff 100644
--- a/lms/templates/portal/course_about.html
+++ b/lms/templates/portal/course_about.html
@@ -9,6 +9,9 @@
 
 <%inherit file="../main.html" />
 
+
+<%block name="title"><title>About ${course.number}</title></%block>
+
 <section class="course-info">
   <header class="course-profile">
     <div class="intro-inner-wrapper">
diff --git a/lms/templates/static_templates/404.html b/lms/templates/static_templates/404.html
index be3877e85ae41d07395c5656112059fcbd73d1b7..f53c91cc9fd3555504d11694c8bbf69b518745a7 100644
--- a/lms/templates/static_templates/404.html
+++ b/lms/templates/static_templates/404.html
@@ -1,5 +1,7 @@
 <%inherit file="../main.html" />
 
+<%block name="title"><title>404</title></%block>
+
 <section class="outside-app">
   <h1>Page not found</h1>
   <p>The page that you were looking for was not found. Go back to the <a href="/">homepage</a> or let us know about any pages that may have been moved at <a href="mailto:technical@edx.org">technical@edx.edu</a>.</p>
diff --git a/lms/templates/static_templates/about.html b/lms/templates/static_templates/about.html
index 2572be6c1201d1b47d337bcf7f8ac7b920d22585..cd13b1cb284b5f180dfc5c22715596d86dad1771 100644
--- a/lms/templates/static_templates/about.html
+++ b/lms/templates/static_templates/about.html
@@ -3,6 +3,8 @@
 
 <%inherit file="../main.html" />
 
+<%block name="title"><title>About edX</title></%block>
+
 <section class="container about">
   <nav>
     <a href="${reverse('about_edx')}" class="active">Vision</a>
diff --git a/lms/templates/static_templates/contact.html b/lms/templates/static_templates/contact.html
index 760d07002481e5e77ed3ea1bd17cde569e9f3e51..cc88f00bfae8a1c1378c830e24ef554ce2a3223d 100644
--- a/lms/templates/static_templates/contact.html
+++ b/lms/templates/static_templates/contact.html
@@ -3,6 +3,8 @@
 
 <%inherit file="../main.html" />
 
+<%block name="title"><title>Contact edX</title></%block>
+
 <section class="container about">
   <nav>
     <a href="${reverse('about_edx')}">Vision</a>
diff --git a/lms/templates/static_templates/copyright.html b/lms/templates/static_templates/copyright.html
index 7cc9f71c8663732d01b65ce452c1b6c8b9e468a4..67058ad6390ab265247e1c839d14955b3156e79b 100644
--- a/lms/templates/static_templates/copyright.html
+++ b/lms/templates/static_templates/copyright.html
@@ -3,6 +3,8 @@
 
 <%namespace name='static' file='../static_content.html'/>
 
+<%block name="title"><title>Copyright</title></%block>
+
 <section class="static-container copyright">
   <h1> Licensing Information </h1>
   <hr class="horizontal-divider">
diff --git a/lms/templates/static_templates/faq.html b/lms/templates/static_templates/faq.html
index 72090daf4578516544cae9b2a5fcab9f95ea5f14..00bf4969a3e24e2d45b20eaca9927daf934af2a5 100644
--- a/lms/templates/static_templates/faq.html
+++ b/lms/templates/static_templates/faq.html
@@ -3,6 +3,8 @@
 
 <%inherit file="../main.html" />
 
+<%block name="title"><title>FAQ</title></%block>
+
 <section class="container about">
   <nav>
     <a href="${reverse('about_edx')}">Vision</a>
diff --git a/lms/templates/static_templates/help.html b/lms/templates/static_templates/help.html
index 4790905982d9b1afda0208403a688d42740774ea..c0d7b941c163bd9ea758761ea1c531f687f0504e 100644
--- a/lms/templates/static_templates/help.html
+++ b/lms/templates/static_templates/help.html
@@ -3,7 +3,7 @@
 
 <%namespace name='static' file='../static_content.html'/>
 
-<%block name="title"><title>Help - MITx 6.002x</title></%block>
+<%block name="title"><title>edX Help</title></%block>
 
 <section class="static-container help">
   <h1>Help</h1>
diff --git a/lms/templates/static_templates/honor.html b/lms/templates/static_templates/honor.html
index cd8ce2bb8b2dfbb4a4984815cf32e7d0bcec7021..121bcba44e78bdcb3f6fa879dceee1d052fdf5ed 100644
--- a/lms/templates/static_templates/honor.html
+++ b/lms/templates/static_templates/honor.html
@@ -4,6 +4,8 @@
 
 <%namespace name='static' file='../static_content.html'/>
 
+<%block name="title"><title>Honor Code</title></%block>
+
 <section class="static-container honor-code">
   <h1> Honor Code </h1>
   <hr class="horizontal-divider">
diff --git a/lms/templates/static_templates/jobs.html b/lms/templates/static_templates/jobs.html
index 5a6bb1bd5c7cffcb776dcda75261f2b11227187c..346862e51c0c9de09f049bcd3b4c6548bd92278c 100644
--- a/lms/templates/static_templates/jobs.html
+++ b/lms/templates/static_templates/jobs.html
@@ -2,6 +2,8 @@
 
 <%inherit file="../main.html" />
 
+<%block name="title"><title>Jobs</title></%block>
+
 <section class="container jobs">
   <h1>Do You Want to Change the Future of Education?</h1>
   <hr class="horizontal-divider">
diff --git a/lms/templates/static_templates/press.html b/lms/templates/static_templates/press.html
index 670627c9dd98820c14ffb169916c1972249e4b91..412b31c0847651e5ea71f6cfb95e43f501a4ae8a 100644
--- a/lms/templates/static_templates/press.html
+++ b/lms/templates/static_templates/press.html
@@ -3,6 +3,8 @@
 
 <%inherit file="../main.html" />
 
+<%block name="title"><title>edX in the Press</title></%block>
+
 <section class="container about">
   <nav>
     <a href="${reverse('about_edx')}">Vision</a>
diff --git a/lms/templates/static_templates/pressrelease.html b/lms/templates/static_templates/pressrelease.html
index 68a7e1d48347fcc8d189a498b19f3bbcc45d23c9..c9ec29e08bc74e9b976d6dc1e239ac3f423b910a 100644
--- a/lms/templates/static_templates/pressrelease.html
+++ b/lms/templates/static_templates/pressrelease.html
@@ -3,6 +3,8 @@
 
 <%namespace name='static' file='../static_content.html'/>
 
+<%block name="title"><title>MIT and Harvard announce edX</title></%block>
+
 <section class="pressrelease">
   <section class="container">
     <h1>MIT and Harvard announce edX</h1>
diff --git a/lms/templates/static_templates/privacy.html b/lms/templates/static_templates/privacy.html
index 817048c45baebc53d25732826a455540425a279c..ec50d074337c21958fcb3b98b3efcd5b8caeb5b7 100644
--- a/lms/templates/static_templates/privacy.html
+++ b/lms/templates/static_templates/privacy.html
@@ -3,6 +3,8 @@
 
 <%namespace name='static' file='../static_content.html'/>
 
+<%block name="title"><title>Privacy Policy</title></%block>
+
 <section class="static-container privacy-policy">
   <h1>Privacy Policy</h1>
   <hr class="horizontal-divider">
diff --git a/lms/templates/static_templates/tos.html b/lms/templates/static_templates/tos.html
index 260a4c22897c918bd93391a752d6f0112c243cdd..69e421c76e1855b8155f2935e57b3c7a33d07977 100644
--- a/lms/templates/static_templates/tos.html
+++ b/lms/templates/static_templates/tos.html
@@ -3,6 +3,8 @@
 
 <%namespace name='static' file='../static_content.html'/>
 
+<%block name="title"><title>Terms of Service</title></%block>
+
 <section class="static-container tos">
   <h1>MITx Terms of Service</h1>
   <hr class="horizontal-divider">
diff --git a/lms/templates/university_profile/berkeleyx.html b/lms/templates/university_profile/berkeleyx.html
index 9e36d99597b93ee9dd84d36bcd31ea58c16ef372..df43eeb6e9ccddd87b864e0a219127196dce9206 100644
--- a/lms/templates/university_profile/berkeleyx.html
+++ b/lms/templates/university_profile/berkeleyx.html
@@ -1,6 +1,8 @@
 <%inherit file="base.html" />
 <%namespace name='static' file='../static_content.html'/>
 
+<%block name="title"><title>BerkeleyX</title></%block>
+
 <%block name="university_header">
   <header class="search" style="background: url('/static/images/berkeley_fountain_2025x550.jpg')">
     <div class="inner-wrapper university-search">
diff --git a/lms/templates/university_profile/harvardx.html b/lms/templates/university_profile/harvardx.html
index bf6bec37f651deda1a241efe520b338a2de7fbc1..900027b1bd9f07590f789d375dec4b4a333e3d0d 100644
--- a/lms/templates/university_profile/harvardx.html
+++ b/lms/templates/university_profile/harvardx.html
@@ -1,6 +1,8 @@
 <%inherit file="base.html" />
 <%namespace name='static' file='../static_content.html'/>
 
+<%block name="title"><title>HarvardX</title></%block>
+
 <%block name="university_header">
   <header class="search" style="background: url('/static/images/about_harvard_page_2025x550.jpg')">
     <div class="inner-wrapper university-search">
diff --git a/lms/templates/university_profile/mitx.html b/lms/templates/university_profile/mitx.html
index 6376692c41c8b7d2bc916e500af0656a5ae6c5fc..ac4de24ec6cf1e425385bc811824c115370e9cd4 100644
--- a/lms/templates/university_profile/mitx.html
+++ b/lms/templates/university_profile/mitx.html
@@ -1,6 +1,8 @@
 <%inherit file="base.html" />
 <%namespace name='static' file='../static_content.html'/>
 
+<%block name="title"><title>MITx</title></%block>
+
 <%block name="university_header">
   <header class="search" style="background: url('/static/images/shot-2-large.jpg')">
     <div class="inner-wrapper university-search">