__init__.py 373 B

123456789101112131415161718
  1. """Elgg ReadTheDocs theme.
  2. Based on https://github.com/ryan-roemer/sphinx-bootstrap-theme.
  3. """
  4. import os
  5. VERSION = (0, 1, 5)
  6. __version__ = ".".join(str(v) for v in VERSION)
  7. __version_full__ = __version__
  8. def get_html_theme_path():
  9. """Return list of HTML theme paths."""
  10. cur_dir = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
  11. return cur_dir