forked from educloudalliance/eca-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
37 lines (33 loc) · 798 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
# -*- coding: utf-8 -*-
import os
extensions = [
'sphinx.ext.todo',
]
templates_path = ['_templates']
html_theme_path = ['_themes']
html_static_path = ['_static']
source_suffix = '.rst'
master_doc = 'sitemap'
project = u'Educloud Alliance Technical Documentation'
copyright = u'Educloud Alliance'
version = '1.0'
release = '1.0'
language = 'en'
html_title = 'Educloud Alliance'
unused_docs = []
exclude_trees = []
pygments_style = 'colorful'
#html_theme = 'nature'
html_theme = 'pyramid'
html_theme_options = {}
html_use_modindex = False
html_use_index = True
html_show_sourcelink = False
html_copy_source = False
html_file_suffix = '.html'
html_last_updated_fmt = '%b %d, %Y'
html_add_permalinks = False
#html_use_smartypants = True
html_additional_pages = {
# 'index': 'index.html',
}