Skip to content

Commit b36c87f

Browse files
authored
Merge pull request #20 from jklymak/fix-add-title
FIX: add title to conf
2 parents 07fddee + e8c1e8f commit b36c87f

File tree

1 file changed

+4
-14
lines changed

1 file changed

+4
-14
lines changed

docs/conf.py

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,14 @@
11
import datetime
22

3-
# Configuration file for the Sphinx documentation builder for
4-
# matplotlib projects.
5-
6-
# Release mode enables optimizations and other related options.
7-
is_release_build = tags.has('release') # noqa
8-
93
# -- Project information -----------------------------------------------------
104

11-
project = "Matplotlib Sphinx Theme"
5+
html_title = 'Matplotlib - Visualization with Python'
6+
project = "Matplotlib landing page"
127
copyright = (
138
f"2012 - {datetime.datetime.now().year} The Matplotlib development team"
149
)
1510
author = "Matplotlib Developers"
1611

17-
1812
# -- General configuration ---------------------------------------------------
1913

2014
# Add any Sphinx extension module names here, as strings. They can be
@@ -38,15 +32,11 @@
3832
html_favicon = "_static/favicon.ico"
3933
html_theme_options = {
4034
"logo_link": "https://matplotlib.org/stable/",
41-
# collapse_navigation in pydata-sphinx-theme is slow, so skipped for local
42-
# and CI builds https://github.com/pydata/pydata-sphinx-theme/pull/386
43-
"collapse_navigation": not is_release_build,
44-
"show_prev_next": False,
4535
"native_site": False,
4636
"footer_items": ["landing_footer"],
4737
}
4838

4939
# Add any paths that contain custom static files (such as style sheets) here,
50-
# relative to this directory. They are copied after the builtin static files,
51-
# so a file named "default.css" will overwrite the builtin "default.css".
40+
# relative to this directory. They are copied after the theme static files,
41+
# so a file named "default.css" will overwrite the theme's "default.css".
5242
html_static_path = ["_static"]

0 commit comments

Comments
 (0)