diff --git a/lms/djangoapps/branding/__init__.py b/lms/djangoapps/branding/__init__.py index 23735823bf..6e723c2ee6 100644 --- a/lms/djangoapps/branding/__init__.py +++ b/lms/djangoapps/branding/__init__.py @@ -72,6 +72,6 @@ def get_logo_url(): static_url=settings.STATIC_URL, uni=university ) else: - return '{static_url}images/logo-placeholder.png'.format( + return '{static_url}images/default-theme/logo.png'.format( static_url=settings.STATIC_URL ) diff --git a/lms/static/images/logo-placeholder-large.png b/lms/static/images/default-theme/logo-large.png similarity index 100% rename from lms/static/images/logo-placeholder-large.png rename to lms/static/images/default-theme/logo-large.png diff --git a/lms/static/images/default-theme/logo.png b/lms/static/images/default-theme/logo.png new file mode 100644 index 0000000000..94099e3650 Binary files /dev/null and b/lms/static/images/default-theme/logo.png differ diff --git a/lms/templates/courseware/courses.html b/lms/templates/courseware/courses.html index 700e27e561..3c65a86585 100644 --- a/lms/templates/courseware/courses.html +++ b/lms/templates/courseware/courses.html @@ -22,7 +22,7 @@ # For some reason, `static.url('images/edx-theme/edx-logo-bw.png')` breaks template rendering. default_image_url = settings.STATIC_URL + 'images/edx-theme/edx-logo-bw.png' else: - default_image_url = settings.STATIC_URL + 'images/logo-placeholder-large.png' + default_image_url = settings.STATIC_URL + 'images/default-theme/logo-large.png' logo_file = microsite.get_value( 'course_index_overlay_logo_file', default_image_url diff --git a/lms/templates/footer.html b/lms/templates/footer.html index 578a08d118..c7a1a34795 100644 --- a/lms/templates/footer.html +++ b/lms/templates/footer.html @@ -45,8 +45,8 @@