Skip to content

Commit

Permalink
Modify conf.py for backwards compat with drms (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cadair committed Sep 11, 2023
1 parent 29583e2 commit 1462aa1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/sunpy_sphinx_theme/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@
from sunpy_sphinx_theme import ON_RTD as on_rtd # noqa
from sunpy_sphinx_theme import PNG_ICON as png_icon # noqa
from sunpy_sphinx_theme import SVG_ICON as svg_icon # noqa
from sunpy_sphinx_theme import get_html_theme_path

__all__ = ["html_theme", "on_rtd", "png_icon", "svg_icon"]
__all__ = ["html_static_path", "html_theme_path", "html_theme", "on_rtd", "png_icon", "svg_icon"]

html_theme = "sunpy"
html_theme_options = {}

html_theme_path = [str(get_html_theme_path())]
html_static_path = [str(get_html_theme_path() / "static")]

0 comments on commit 1462aa1

Please sign in to comment.