From 6cbd324ee6646eeea5bd0ffc8e6b227a3e4a87d9 Mon Sep 17 00:00:00 2001 From: Nathaniel Wesley Filardo Date: Wed, 26 Feb 2014 21:31:21 -0500 Subject: [PATCH] Add sphinx bootstrap theme as git submodule Thanks to kosiakk for the suggestion (via pull request github nwf/dyna#72). This commit does not us to this theme, merely makes it available. I'll leave the actual flip to someone with a sense of aesthetics. :) --- .gitmodules | 3 +++ docs/sphinx/_themes/bootstrap | 1 + docs/sphinx/conf.py | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) create mode 160000 docs/sphinx/_themes/bootstrap diff --git a/.gitmodules b/.gitmodules index a2431b8..cab8fd7 100644 --- a/.gitmodules +++ b/.gitmodules @@ -7,3 +7,6 @@ [submodule "external/ekmett-trifecta"] path = external/ekmett-trifecta url = git://github.com/ekmett/trifecta.git +[submodule "docs/sphinx/_themes/bootstrap"] + path = docs/sphinx/_themes/bootstrap + url = https://github.com/ryan-roemer/sphinx-bootstrap-theme.git diff --git a/docs/sphinx/_themes/bootstrap b/docs/sphinx/_themes/bootstrap new file mode 160000 index 0000000..71d6ae5 --- /dev/null +++ b/docs/sphinx/_themes/bootstrap @@ -0,0 +1 @@ +Subproject commit 71d6ae5999333f256e69a760a81bc844342dbd2e diff --git a/docs/sphinx/conf.py b/docs/sphinx/conf.py index 9e2889c..0247cee 100644 --- a/docs/sphinx/conf.py +++ b/docs/sphinx/conf.py @@ -117,7 +117,7 @@ html_theme = 'default' #html_theme_options = {} # Add any paths that contain custom themes here, relative to this directory. -#html_theme_path = [] +html_theme_path = [ '_themes/bootstrap' ] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". -- 2.50.1