Usage

To use the Sphinx audEERING theme, add the following to your docs/conf.py:

html_theme = 'sphinx_audeering_theme'

Theme options

You can influence the appearance by deciding if your project title and the version of your project should be shown. To show both add the following to conf.py:

html_theme_options = {
    'display_version': True,
    'logo_only': False,
}

If you have pages in your documentation that profit from larger page width, you can list their names under:

html_themes_options = {
    'wide_pages': ['page-name1', 'page-name2'],
}

In the footer links to main documentation pages are shown. You can hide those links with:

html_themes_options = {
    'footer_links': False,
}

The sphinx-audeering-theme inherits from sphinx-rtd-theme and can be further modified by applying their configuration settings.