-
Notifications
You must be signed in to change notification settings - Fork 1
/
conf.py
47 lines (42 loc) · 1.35 KB
/
conf.py
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
import time
extensions = [
'sphinx_design',
'sphinx.ext.githubpages',
]
templates_path = ['_templates']
source_suffix = '.rst'
description = 'emsig: ElectroMagnetic Simulation in Geophysics'
project = 'emsig'
author = 'The emsig community'
copyright = f'2018-{time.strftime("%Y")}, {author}'
pygments_style = 'friendly'
html_theme = 'pydata_sphinx_theme'
html_static_path = ['_static']
html_logo = '_static/emsig-logo.svg'
html_favicon = '_static/favicon.ico'
html_theme_options = {
"github_url": "https://github.com/emsig",
"external_links": [
{"name": "empymod", "url": "https://empymod.emsig.xyz"},
{"name": "emg3d", "url": "https://emg3d.emsig.xyz"},
],
# "navbar_start": ["navbar-logo"],
# "navbar_center": ["navbar-nav"],
# "navbar_end": ["navbar-icon-links"],
# "footer_items": ["copyright", "sphinx-version"],
"secondary_sidebar_items": [],
"analytics": {
# The domain you'd like to use for this analytics instance
"plausible_analytics_domain": "emsig.xyz",
# The analytics script that is served by Plausible
"plausible_analytics_url": "https://plausible.io/js/plausible.js",
},
}
html_file_suffix = '.html'
html_sidebars = {
"**": [],
}
html_css_files = [
"style.css",
"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
]