Hi Fujita-San, On 2015年10月16日 23:16, FUJITA Tomonori wrote: > On Tue, 13 Oct 2015 17:13:57 +0900 > Yusuke Iwase <[email protected]> wrote: > >> How about using this theme? What are your thoughts on this? >> http://ryu-iwase.readthedocs.org/en/doc-sphinx_rtd_theme/ > > Yeah, looks good. What we need to do is changing doc/source/conf.py?
Yes, I just changed 'html_theme' setting in doc/source/conf.py. Here is the patch which I made for the sample pages in the previous mail. Regard, Iwase
>From e69d28a4d9b02d9ab95bf3fa2e8a59bd50ae9897 Mon Sep 17 00:00:00 2001 From: IWASE Yusuke <[email protected]> Date: Tue, 13 Oct 2015 16:44:23 +0900 Subject: [PATCH] doc: Change Sphinx html_theme to sphinx_rtd_theme Currently, Ryu-Documentation page adopts 'haiku' for Sphinx html_theme, but 'haiku' does not have page-index and no sidebar. This patch changes Sphinx html_theme to 'sphinx_rtd_theme', which outputs page-index for each page and a mobile-friendly sphinx theme that was made for readthedocs.org. Signed-off-by: IWASE Yusuke <[email protected]> --- doc/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 5fdd510..84a5af9 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -94,7 +94,7 @@ pygments_style = 'sphinx' # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'haiku' +html_theme = 'sphinx_rtd_theme' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the -- 1.9.1
------------------------------------------------------------------------------
_______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
