-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconf.py
More file actions
107 lines (91 loc) · 3.03 KB
/
conf.py
File metadata and controls
107 lines (91 loc) · 3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
import os
import sys
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = "workshop.dipy.org"
copyright = "2026, DIPY Team"
author = "DIPY Team"
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
sys.path.append(os.path.abspath("sphinxext"))
extensions = [
"sphinx_design",
"workshop",
"jinja",
"sphinx_reredirects",
"sphinx_sitemap",
]
templates_path = ["_templates"]
exclude_patterns = []
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = "pydata_sphinx_theme"
html_static_path = ["_static"]
html_js_files = [
"js/splide.js",
"js/workshop.js",
"js/countdown.js",
"js/carousel.js",
"js/schedule-carousel.js",
"js/hero-carousel.js",
"js/navbar.js",
]
html_logo = "_static/images/dipy-logo.png"
html_favicon = "_static/images/icons/favicon.ico"
html_baseurl = "https://workshop.dipy.org/"
html_additional_pages = {
"index": "coming_soon.html",
"2019": "dw_2019.html",
"2020": "dw_2020.html",
}
html_theme_options = {
"logo": {
"link": "https://dipy.org",
},
"navbar_start": ["navbar-logo"],
"navbar_center": ["navbar-nav"],
"navbar_end": [],
"navbar_persistent": [],
"primary_sidebar_end": [],
"secondary_sidebar_items": [],
"show_toc_level": 1,
"navigation_with_keys": False,
"show_prev_next": False,
"navbar_align": "content",
"footer_start": [],
"footer_center": [],
"footer_end": [],
"analytics": {
"google_analytics_id": "G-D2TV6ZZQL3",
},
}
html_context = {
"default_mode": "light",
}
html_sidebars = {"**": []}
# -- Options for sphinx-reredirects -------------------------------------------
redirects = {
"workshops/dipy-workshop-2019": "../2019.html",
"workshops/dipy-workshop-2020": "../2020.html",
"workshops/dipy-workshop-2021": "../2021.html",
"workshops/dipy-workshop-2022": "../2022.html",
"workshops/dipy-workshop-2023": "../2023.html",
"workshops/dipy-workshop-2024": "../2024.html",
"workshops/dipy-workshop-2025": "../2025.html",
"workshops/dipy-workshop-2026": "../2026.html",
"dipy-workshop-2019": "2019.html",
"dipy-workshop-2020": "2020.html",
"dipy-workshop-2021": "2021.html",
"dipy-workshop-2022": "2022.html",
"dipy-workshop-2023": "2023.html",
"dipy-workshop-2024": "2024.html",
"dipy-workshop-2025": "2025.html",
"dipy-workshop-2026": "2026.html",
}
# -- Sitemap options --------------------------------------------------
sitemap_locales = [None]
sitemap_url_scheme = "{link}"