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():
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
)
......@@ -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
......
......@@ -45,8 +45,8 @@
<p>
<a href="/">
## this is just a placeholder logo
## feel free to change this logo to your own
<img alt="organization logo placeholder" src="/static/images/logo-placeholder.png">
## 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/default-theme/logo.png">
</a>
</p>
</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