diff options
author | 2021-02-28 17:20:12 +0100 | |
---|---|---|
committer | 2021-02-28 17:20:12 +0100 | |
commit | 73cb9a1bbe4ac1694ad40048f6b532f5e6dd6672 (patch) | |
tree | d71a1916f7769cc75d1af00c3b0f570ddedc7e0b /docs/conf.py | |
parent | Merge branch 'main' of github.com:gotosocial/server into main (diff) | |
download | gotosocial-73cb9a1bbe4ac1694ad40048f6b532f5e6dd6672.tar.xz |
Update docs
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py index b46731ca8..e06db21c9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -14,6 +14,7 @@ # import sys # sys.path.insert(0, os.path.abspath('.')) +import sphinx_rtd_theme # -- Project information ----------------------------------------------------- @@ -21,13 +22,13 @@ project = 'GoToSocial' copyright = '2021, GoToSocial Authors' author = 'GoToSocial Authors' - # -- General configuration --------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ + "sphinx_rtd_theme" ] # Add any paths that contain templates here, relative to this directory. @@ -44,7 +45,7 @@ exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'alabaster' +html_theme = "sphinx_rtd_theme" # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, |