|
30 | 30 | # Add any Sphinx extension module names here, as strings. They can be |
31 | 31 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
32 | 32 | # ones. |
| 33 | +import sphinx_rtd_theme |
| 34 | + |
33 | 35 | extensions = ['sphinx.ext.autodoc', |
34 | 36 | 'sphinx.ext.todo', |
35 | 37 | 'sphinx.ext.mathjax', |
36 | | - 'sphinxcontrib.bibtex'] |
| 38 | + 'sphinxcontrib.bibtex', |
| 39 | + #'sphinxcontrib.fulltoc', |
| 40 | + "sphinx_rtd_theme"] |
37 | 41 |
|
38 | 42 |
|
39 | 43 | # Add any paths that contain templates here, relative to this directory. |
|
50 | 54 |
|
51 | 55 | # General information about the project. |
52 | 56 | project = u'Hydra' |
53 | | -copyright = u'2017, Antonio Augusto Alves Junior' |
| 57 | +copyright = u'2016-2020, Antonio Augusto Alves Junior' |
54 | 58 | author = u'Antonio Augusto Alves Junior' |
55 | 59 |
|
56 | 60 | # The version info for the project you're documenting, acts as replacement for |
57 | 61 | # |version| and |release|, also used in various other places throughout the |
58 | 62 | # built documents. |
59 | 63 | # |
60 | 64 | # The short X.Y version. |
61 | | -version = u'2.0' |
| 65 | +version = u'3.X.Y' |
62 | 66 | # The full version, including alpha/beta/rc tags. |
63 | | -release = u'2.0' |
| 67 | +release = u'3.X.Y' |
64 | 68 |
|
65 | 69 | # The language for content autogenerated by Sphinx. Refer to documentation |
66 | 70 | # for a list of supported languages. |
|
86 | 90 | # The theme to use for HTML and HTML Help pages. See the documentation for |
87 | 91 | # a list of builtin themes. |
88 | 92 | # |
89 | | -html_theme = 'classic' |
| 93 | +html_theme = "sphinx_rtd_theme"#'classic' |
| 94 | +#html_theme_options = { |
| 95 | +# "relbarbgcolor": "black", |
| 96 | +# "sidebarbgcolor":"lavender", |
| 97 | +# "sidebartextcolor": "black", |
| 98 | +# "sidebarlinkcolor": "brown" |
| 99 | +#} |
90 | 100 | html_theme_options = { |
91 | | - "relbarbgcolor": "black", |
92 | | - "sidebarbgcolor":"lavender", |
93 | | - "sidebartextcolor": "black", |
94 | | - "sidebarlinkcolor": "brown" |
| 101 | + 'canonical_url': '', |
| 102 | + 'logo_only': False, |
| 103 | + 'display_version': True, |
| 104 | + 'prev_next_buttons_location': 'bottom', |
| 105 | + 'style_external_links': False, |
| 106 | + 'vcs_pageview_mode': '', |
| 107 | + 'style_nav_header_background': 'white', |
| 108 | + # Toc options |
| 109 | + 'collapse_navigation': True, |
| 110 | + 'sticky_navigation': True, |
| 111 | + 'navigation_depth': 4, |
| 112 | + 'includehidden': True, |
| 113 | + 'titles_only': False |
95 | 114 | } |
96 | | - |
97 | 115 | # Theme options are theme-specific and customize the look and feel of a theme |
98 | 116 | # further. For a list of options available for each theme, see the |
99 | 117 | # documentation. |
|
0 commit comments