Move default Open edX branding into default-theme directory

OPEN-307
This commit is contained in:
Sarina Canelake
2015-01-08 16:15:27 -05:00
parent 6f5134f711
commit cae70d9966
5 changed files with 4 additions and 4 deletions

View File

@@ -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
)

View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@@ -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

View File

@@ -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>