Skip to content

Commit

Permalink
Explicitly set the Sphinx theme to classic
Browse files Browse the repository at this point in the history
Newer versions of Sphinx have changed the default theme to alabaster. Our docs
were still rendering mostly the same because we copied and modified the
classic theme css in the _static directory (to change the colors to green).
However, it was causing the top navigation bar to not appear, as alabaster
doesn't have it.

See http://stackoverflow.com/q/39262189/161801.
  • Loading branch information
asmeurer committed Sep 1, 2016
1 parent 6e000c2 commit 8c5202b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions doc/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@
# using the given strftime format.
html_last_updated_fmt = '%b %d, %Y'

html_theme = 'classic'

html_logo = '_static/sympylogo.png'
html_favicon = '../_build/logo/sympy-notailtext-favicon.ico'
# See http://sphinx-doc.org/theming.html#builtin-themes.
Expand Down

0 comments on commit 8c5202b

Please sign in to comment.