Skip to content

Commit

Permalink
feat: edX projects get edX logos
Browse files Browse the repository at this point in the history
  • Loading branch information
Ned Batchelder authored and nedbat committed Sep 12, 2023
1 parent c642e62 commit 630ebd3
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions en_us/course_authors/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
sys.path.append('../../../')

from shared.conf import *
from shared.edxconf import *

project = u'Building and Running an edX Course'

Expand Down
1 change: 1 addition & 0 deletions en_us/course_catalog_api_user_guide/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
sys.path.append('../../../')

from shared.conf import *
from shared.edxconf import *

project = u'EdX Course Catalog API User Guide'

Expand Down
1 change: 1 addition & 0 deletions en_us/discovery_api/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
sys.path.append('../../../')

from shared.conf import *
from shared.edxconf import *

project = u'Discovery Service API Guide'

Expand Down
1 change: 1 addition & 0 deletions en_us/enterprise_api/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
sys.path.append('../../../')

from shared.conf import *
from shared.edxconf import *

project = u'EdX Enterprise API Guide'

Expand Down
1 change: 1 addition & 0 deletions en_us/students_redirect/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
sys.path.append('../../../')

from shared.conf import *
from shared.edxconf import *

project = u'EdX Learner\'s Guide'

Expand Down
12 changes: 12 additions & 0 deletions shared/edxconf.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
"""
Settings common to all edX projects.
Import this into conf.py after the common configuration::
from shared.conf import *
from shared.edxconf import *
"""

html_logo = "https://www.edx.org/images/logos/edx-logo-elm.svg"
html_favicon = "https://www.edx.org/favicon.ico"

0 comments on commit 630ebd3

Please sign in to comment.