diff options
author | Brad King <brad.king@kitware.com> | 2013-11-04 19:17:43 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-11-05 13:58:56 (GMT) |
commit | fb332197bfabe5eb3b8dbd83d3d5c0d9032d71ca (patch) | |
tree | e13805d845adf1986f8df7523f3c95aa47494303 /Utilities/Sphinx/conf.py.in | |
parent | e1f819664b7d2c2a26342a2d277e95f194ed71d7 (diff) | |
download | CMake-fb332197bfabe5eb3b8dbd83d3d5c0d9032d71ca.zip CMake-fb332197bfabe5eb3b8dbd83d3d5c0d9032d71ca.tar.gz CMake-fb332197bfabe5eb3b8dbd83d3d5c0d9032d71ca.tar.bz2 |
Help: Configure html page navigation bars
Add a small CMake logo to the left side of the header and footer
navigation bars. Set the html theme, title, and short title explicitly.
Diffstat (limited to 'Utilities/Sphinx/conf.py.in')
-rw-r--r-- | Utilities/Sphinx/conf.py.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Utilities/Sphinx/conf.py.in b/Utilities/Sphinx/conf.py.in index d8daee4..e8f5d8a 100644 --- a/Utilities/Sphinx/conf.py.in +++ b/Utilities/Sphinx/conf.py.in @@ -30,6 +30,7 @@ primary_domain = 'cmake' exclude_patterns = [] extensions = ['cmake'] +templates_path = ['@conf_path@/templates'] cmake_manuals = sorted(glob.glob(r'@conf_docs@/manual/*.rst')) cmake_manual_description = re.compile('^\.\. cmake-manual-description:(.*)$') @@ -57,3 +58,6 @@ man_show_urls = False html_show_sourcelink = True html_static_path = ['@conf_path@/static'] html_style = 'cmake.css' +html_theme = 'default' +html_title = 'CMake %s Documentation' % release +html_short_title = '%s Documentation' % release |