summaryrefslogtreecommitdiffstats
path: root/opnfv-theme/README.rst
diff options
context:
space:
mode:
authorSofia Wallin <sofia.wallin@ericsson.com>2018-02-22 11:45:31 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-02-22 11:45:31 +0000
commit9c329a1a4e8ca5cf65d93fceadc19413808f0df5 (patch)
tree7ffa78d99ed56c50b6a7045ad79aeb92b193df8a /opnfv-theme/README.rst
parent2346cd06fd37f39a708e66a282125ab9d647c81e (diff)
parentc1cbdfaf687437baba73fbbe5551907b6913f0a4 (diff)
Merge "OPNFV Sphinx Theme"
Diffstat (limited to 'opnfv-theme/README.rst')
-rw-r--r--opnfv-theme/README.rst48
1 files changed, 48 insertions, 0 deletions
diff --git a/opnfv-theme/README.rst b/opnfv-theme/README.rst
new file mode 100644
index 000000000..484a7a793
--- /dev/null
+++ b/opnfv-theme/README.rst
@@ -0,0 +1,48 @@
+OPNFV Documentation Theme
+=========================
+
+This theme is used for all OPNFV documentation and is released seperatly
+from the documentation itself. It's and extention of the `Sphinx
+Bootstrap Theme`_
+
+Installation
+------------
+
+Here's how to install the theme from PyPI_
+
+To install and configure the theme do the following.
+
+#. Install the theme from pypi::
+
+ $ pip install sphinx_opnfv_theme
+
+#. Configure Sphinx to use the theme:
+
+.. code-block:: python
+
+ # conf.py
+ import sphinx_opnfv_theme
+
+ # ...
+
+ html_theme = 'opnfv'
+ html_theme_path = sphinx_opnfv_theme.get_html_theme_path()
+
+Customization
+-------------
+
+There are no customization specific to this theme yet, but all
+all customizations_ Sphinx Bootstrap Theme are supported.
+
+If you'd like your documentation to match OPNFV's style configure the
+following options for the bootstrap theme::
+
+ html_theme_options = {
+ 'bootswatch_theme': 'journal',
+ 'navbar_sidebarrel': false,
+ 'navbar_title': '',
+ }
+
+.. _Sphinx Bootstrap Theme: https://github.com/ryan-roemer/sphinx-bootstrap-theme
+.. _Pypi: http://pypi.python.org/pypi/sphinx-opnfv-theme/
+.. _customizations: https://github.com/ryan-roemer/sphinx-bootstrap-theme#customization