Commit cae70d99 by Sarina Canelake

Move default Open edX branding into default-theme directory

OPEN-307
parent 6f5134f7
...@@ -72,6 +72,6 @@ def get_logo_url(): ...@@ -72,6 +72,6 @@ def get_logo_url():
static_url=settings.STATIC_URL, uni=university static_url=settings.STATIC_URL, uni=university
) )
else: else:
return '{static_url}images/logo-placeholder.png'.format( return '{static_url}images/default-theme/logo.png'.format(
static_url=settings.STATIC_URL static_url=settings.STATIC_URL
) )
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
# For some reason, `static.url('images/edx-theme/edx-logo-bw.png')` breaks template rendering. # 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' default_image_url = settings.STATIC_URL + 'images/edx-theme/edx-logo-bw.png'
else: 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( logo_file = microsite.get_value(
'course_index_overlay_logo_file', default_image_url 'course_index_overlay_logo_file', default_image_url
......
...@@ -45,8 +45,8 @@ ...@@ -45,8 +45,8 @@
<p> <p>
<a href="/"> <a href="/">
## this is just a placeholder logo ## this is just a placeholder logo
## feel free to change this logo to your own ## feel free to change this logo to your own by replacing "logo.png" with your own logo
<img alt="organization logo placeholder" src="/static/images/logo-placeholder.png"> <img alt="organization logo placeholder" src="/static/images/default-theme/logo.png">
</a> </a>
</p> </p>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment