Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
cae70d99
Commit
cae70d99
authored
Jan 08, 2015
by
Sarina Canelake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move default Open edX branding into default-theme directory
OPEN-307
parent
6f5134f7
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
4 deletions
+4
-4
lms/djangoapps/branding/__init__.py
+1
-1
lms/static/images/default-theme/logo-large.png
+0
-0
lms/static/images/default-theme/logo.png
+0
-0
lms/templates/courseware/courses.html
+1
-1
lms/templates/footer.html
+2
-2
No files found.
lms/djangoapps/branding/__init__.py
View file @
cae70d99
...
...
@@ -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
)
lms/static/images/
logo-placeholder
-large.png
→
lms/static/images/
default-theme/logo
-large.png
View file @
cae70d99
File moved
lms/static/images/default-theme/logo.png
0 → 100644
View file @
cae70d99
4.14 KB
lms/templates/courseware/courses.html
View file @
cae70d99
...
...
@@ -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
...
...
lms/templates/footer.html
View file @
cae70d99
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment