mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 08:16:54 +00:00
switch to default rtd theme
this still doesn't quite work: our sidebar is gone, so no more useful links and related projects. we also loose the link to github and the RTD popup, although the latter still needs to be confirmed on RTD infra
This commit is contained in:
parent
1c61f87da3
commit
3c535b9d7a
1 changed files with 7 additions and 1 deletions
|
@ -19,6 +19,8 @@
|
|||
|
||||
from borg import __version__ as sw_version
|
||||
|
||||
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
|
||||
|
||||
# -- General configuration -----------------------------------------------------
|
||||
|
||||
# If your documentation needs a minimal Sphinx version, state it here.
|
||||
|
@ -92,7 +94,11 @@
|
|||
|
||||
# The theme to use for HTML and HTML Help pages. See the documentation for
|
||||
# a list of builtin themes.
|
||||
html_theme = 'local'
|
||||
#html_theme = ''
|
||||
if not on_rtd: # only import and set the theme if we're building docs locally
|
||||
import sphinx_rtd_theme
|
||||
html_theme = 'sphinx_rtd_theme'
|
||||
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
|
||||
|
||||
# Theme options are theme-specific and customize the look and feel of a theme
|
||||
# further. For a list of options available for each theme, see the
|
||||
|
|
Loading…
Reference in a new issue