File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ There are two main templates that replace the defaults in ``pydata-sphinx-theme`
28
28
29
29
Note that the logo options need not be specified as they are included in theme
30
30
initialization. The logo is stored at
31
- ``mpl_sphinx_theme/static/images/logo2 .svg ``.
31
+ ``mpl_sphinx_theme/static/logo_{light,dark} .svg ``.
32
32
33
33
To change the top navbar, edit ``mpl_sphinx_theme/mpl_nav_bar.html ``
34
34
Original file line number Diff line number Diff line change 46
46
html_theme_options = {
47
47
# logo is installed by mpl-sphinx-theme as:
48
48
# "logo": {"link": "https://matplotlib.org/stable/",
49
- # "image_light": "_static/logo2 .svg",
49
+ # "image_light": "_static/logo_light .svg",
50
50
# "image_dark": "_static/logo_dark.svg"},
51
51
# if this default is OK, then no need to modify "logo"
52
52
# collapse_navigation in pydata-sphinx-theme is slow, so skipped for local
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ There are two main templates that replace the defaults in ``pydata-sphinx-theme`
29
29
30
30
Note that the logo options need not be specified as they are included in theme
31
31
initialization. The logo is stored at
32
- ``mpl_sphinx_theme/static/images/logo2 .svg ``.
32
+ ``mpl_sphinx_theme/static/logo_{light,dark} .svg ``.
33
33
34
34
To change the top navbar, edit ``mpl_sphinx_theme/mpl_nav_bar.html ``
35
35
Original file line number Diff line number Diff line change 4
4
5
5
6
6
def set_config_defaults (app ):
7
-
7
+ """Set default logo in theme options."""
8
8
try :
9
9
theme = app .builder .theme_options
10
10
except AttributeError :
@@ -17,7 +17,7 @@ def set_config_defaults(app):
17
17
if "image_dark" not in logo :
18
18
logo ["image_dark" ] = "_static/logo_dark.svg"
19
19
if "image_light" not in logo :
20
- logo ["image_light" ] = "_static/logo2 .svg"
20
+ logo ["image_light" ] = "_static/logo_light .svg"
21
21
if "link" not in logo :
22
22
logo ["link" ] = "https://matplotlib.org/stable/"
23
23
theme ["logo" ] = logo
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ stylesheet = css/style.css
6
6
navbar_links = absolute
7
7
navbar_center = mpl_nav_bar.html
8
8
navbar_end = theme-switcher.html, mpl_icon_links.html
9
- logo = images/logo2 .svg
9
+ logo = logo_light .svg
You can’t perform that action at this time.
0 commit comments