The Alice theme supports a series of theme-specific options specified through
the html_theme_options
configuration. A full option set is as follows:
html_theme_options = {
#'canonical_url': 'https://www.example.com',
#'includehidden': False,
#'navigation_depth': 4,
#'prev_next_buttons_location': 'both',
#'titles_only': False,
}
For standard HTML configuration and theme options, also consult:
Sphinx – Configuration – Options for HTML output
The following outlines the specific theme options provided by this extension:
Specifies the value which should be added (if any) into the canonical link HTML element in every page header. By default, no canonical element is added.
html_theme_options = {
'canonical_url': 'https://www.example.com',
}
Specifies whether or not only titles (not subheadings) of a document are
included in table(s) of contents. By default, subheadings are permitted with a
value of False
.
html_theme_options = {
'titles_only': True,
}