-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.py
49 lines (34 loc) · 973 Bytes
/
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
48
49
import sphinx_bootstrap_theme
needs_sphinx = '1.6.1'
project = u'Sketch Favicon'
copyright = u'2017, Woof Woof, Inc.'
author = u'Woof Woof, Inc.'
version = '1.0.0'
release = '1.0.0'
templates_path = ['_templates']
exclude_patterns = ['_build']
source_suffix = '.rst'
master_doc = 'index'
language = None
pygments_style = 'sphinx'
extensions = [
'sphinx.ext.githubpages',
]
def setup(app):
app.add_stylesheet("woofwoofinc.css")
# -- Options for HTML output ----------------------------------------------
html_theme = 'bootstrap'
html_theme_path = sphinx_bootstrap_theme.get_html_theme_path()
html_title = project
html_show_sourcelink = False
html_show_sphinx = False
html_show_copyright = False
html_theme_options = {
'navbar_site_name': 'Contents',
'navbar_pagenav': False,
'globaltoc_depth': 2,
'navbar_class': 'navbar navbar-inverse',
'navbar_fixed_top': 'true',
'bootswatch_theme': 'simplex',
}
html_static_path = ['assets']