Commit 9e8a0b86 by Sarina Canelake

Merge pull request #7255 from edx/sarina/studio-default-logo

Match Studio logo logic to LMS
parents 3aaf52d2 1dc75ffd
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
% if settings.FEATURES.get('IS_EDX_DOMAIN', False): % if settings.FEATURES.get('IS_EDX_DOMAIN', False):
<img src="${static.url("images/edx-theme/edx-studio-logo.png")}" alt="${settings.STUDIO_NAME}" /> <img src="${static.url("images/edx-theme/edx-studio-logo.png")}" alt="${settings.STUDIO_NAME}" />
% else: % else:
<img src="${static.url("images/logo-placeholder.png")}" alt="${settings.STUDIO_NAME}" /> <img src="${static.url("images/default-theme/logo.png")}" alt="${settings.STUDIO_NAME}" />
% endif % endif
</a></h1> </a></h1>
......
...@@ -125,7 +125,7 @@ def get_or_create_root(): ...@@ -125,7 +125,7 @@ def get_or_create_root():
pass pass
starting_content = "\n".join(( starting_content = "\n".join((
_("Welcome to the edX Wiki"), _("Welcome to the {platform_name} Wiki").format(platform_name=settings.PLATFORM_NAME),
"===", "===",
_("Visit a course wiki to add an article."), _("Visit a course wiki to add an article."),
)) ))
......
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