From 25be142723568421b3c22a058ea2490bf87950fb Mon Sep 17 00:00:00 2001 From: David Wosnitza Date: Fri, 12 Dec 2014 15:37:28 +0100 Subject: changed theme to sphinx_rtd_theme Signed-off-by: David Wosnitza --- .../source/_themes/sphinx_rtd_theme/__init__.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 user_guide_src/source/_themes/sphinx_rtd_theme/__init__.py (limited to 'user_guide_src/source/_themes/sphinx_rtd_theme/__init__.py') diff --git a/user_guide_src/source/_themes/sphinx_rtd_theme/__init__.py b/user_guide_src/source/_themes/sphinx_rtd_theme/__init__.py new file mode 100644 index 000000000..1440863d6 --- /dev/null +++ b/user_guide_src/source/_themes/sphinx_rtd_theme/__init__.py @@ -0,0 +1,17 @@ +"""Sphinx ReadTheDocs theme. + +From https://github.com/ryan-roemer/sphinx-bootstrap-theme. + +""" +import os + +VERSION = (0, 1, 5) + +__version__ = ".".join(str(v) for v in VERSION) +__version_full__ = __version__ + + +def get_html_theme_path(): + """Return list of HTML theme paths.""" + cur_dir = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) + return cur_dir -- cgit v1.2.3-24-g4f1b