diff --git a/lms/templates/courseware/course_about.html b/lms/templates/courseware/course_about.html index 941bf61698..cc4b2ec317 100644 --- a/lms/templates/courseware/course_about.html +++ b/lms/templates/courseware/course_about.html @@ -8,7 +8,11 @@ <%inherit file="../main.html" /> <%block name="headextra"> - <%include file="../google_analytics.html" /> + % if self.theme_enabled(): + <%include file="../theme-google-analytics.html" /> + % else: + <%include file="../google_analytics.html" /> + % endif %block> <%block name="js_extra"> @@ -46,7 +50,12 @@