Skip to content

Commit

Permalink
Build: define html_theme variable (#10663)
Browse files Browse the repository at this point in the history
Use the global value or `alabaster` if not defined by the user.
It default to `alabaster` because it's the default value for Sphinx.
  • Loading branch information
humitos authored Aug 24, 2023
1 parent 8678a26 commit f999d65
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions readthedocs/doc_builder/templates/doc_builder/conf.py.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ if not 'html_static_path' in globals():
if os.path.exists('_static'):
html_static_path.append('_static')

# Define this variable in case it's not defined by the user.
# It defaults to `alabaster` which is the default from Sphinx.
# https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_theme
html_theme = globals().get('html_theme', 'alabaster')

#Add project information to the template context.
context = {
'html_theme': html_theme,
Expand Down

0 comments on commit f999d65

Please sign in to comment.