From cc5b9d9643c5563d0933b585aa664f29edfc0ca1 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Tue, 26 Jul 2016 01:15:27 -0400 Subject: adding modified sphinx_rtd with red color --- sphinx_rtd_theme/__init__.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 sphinx_rtd_theme/__init__.py (limited to 'sphinx_rtd_theme/__init__.py') diff --git a/sphinx_rtd_theme/__init__.py b/sphinx_rtd_theme/__init__.py new file mode 100644 index 00000000..7ba4d525 --- /dev/null +++ b/sphinx_rtd_theme/__init__.py @@ -0,0 +1,15 @@ +"""Sphinx ReadTheDocs theme. + +From https://github.com/ryan-roemer/sphinx-bootstrap-theme. + +""" +import os + +__version__ = '0.1.10-alpha' +__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.3.1