summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/_themes/sphinx_rtd_theme/__init__.py
diff options
context:
space:
mode:
authorDavid Wosnitza <david@druul.in>2014-12-12 15:37:28 +0100
committerDavid Wosnitza <david@druul.in>2014-12-12 15:37:28 +0100
commit25be142723568421b3c22a058ea2490bf87950fb (patch)
treed73eeb6bfeefa00de6fcc4dc846ede21fe57f0a9 /user_guide_src/source/_themes/sphinx_rtd_theme/__init__.py
parentab0034bb8a72fc397609ff541182a1819580d761 (diff)
changed theme to sphinx_rtd_theme
Signed-off-by: David Wosnitza <david@druul.in>
Diffstat (limited to 'user_guide_src/source/_themes/sphinx_rtd_theme/__init__.py')
-rw-r--r--user_guide_src/source/_themes/sphinx_rtd_theme/__init__.py17
1 files changed, 17 insertions, 0 deletions
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