Commit 6f5134f7 by Sarina Canelake

Move edx branding into edx-theme directory

OPEN-307
parent 314c9353
......@@ -17,7 +17,7 @@
<section class="vision">
## <div class="our-mission">
## <div class="logo">
## <img src="${static.url('images/edx-logo-large-bw.png')}">
## <img src="${static.url('images/edx-theme/edx-logo-bw.png')}">
## </div>
## <h2 class="mission-quote">&ldquo;${_('The mission of <span class="edx">{edX}</span> is to enhance human fulfillment worldwide through online ## learning, transforming education in quality, efficiency and scale through technology and research, for the benefit of campus-based ## students and the worldwide community of online learners.').format(edX="edX")}&rdquo;</h2>
## </div>
......
......@@ -64,7 +64,7 @@ def get_logo_url():
university = microsite.get_value('university')
if university is None and settings.FEATURES.get('IS_EDX_DOMAIN', False):
return '{static_url}images/edx-logo-77x36.png'.format(
return '{static_url}images/edx-theme/edx-logo-77x36.png'.format(
static_url=settings.STATIC_URL
)
elif university:
......
......@@ -411,9 +411,9 @@ $homepage__header--background: lighten($gray, 15%);
// IMAGES: backgrounds
$homepage-bg-image: none;
$login-banner-image: url(../images/edx-background-banner-account.png);
$register-banner-image: url(../images/edx-background-banner-account.png);
$passwordreset-banner-image: url(../images/edx-background-banner-account.png);
$login-banner-image: url(../images/edx-theme/edx-background-banner-account.png);
$register-banner-image: url(../images/edx-theme/edx-background-banner-account.png);
$passwordreset-banner-image: url(../images/edx-theme/edx-background-banner-account.png);
$video-thumb-url: '../images/homepage-hero-video-thumb.jpg';
......
......@@ -175,7 +175,7 @@ $paleYellow: #fffcf1;
width: 263px;
height: 72px;
margin: 150px auto 50px;
background: url(../images/edx-edge-logo-large.png) no-repeat;
background: url(../images/edx-theme/edx-edge-logo-large.png) no-repeat;
text-indent: -9999px;
overflow: hidden;
}
......
......@@ -19,8 +19,8 @@
course_index_overlay_text = microsite.get_value('course_index_overlay_text', _("Explore courses from {platform_name}.").format(platform_name=platform_name))
if settings.FEATURES.get('IS_EDX_DOMAIN', False):
# For some reason, `static.url('images/edx-logo-bw.png')` breaks template rendering.
default_image_url = settings.STATIC_URL + 'images/edx-logo-bw.png'
# 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'
......
......@@ -11,7 +11,7 @@
<h2 class="sr footer-about-title">${_("About edX")}</h2>
<div class="footer-about-logo">
<img alt="edX logo" src="${static.url('images/edx-header-logo.png')}">
<img alt="edX logo" src="${static.url('images/edx-theme/edx-header-logo.png')}">
</div>
<div class="footer-about-copy">
......
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