From 9977822f3b4e52cdc02469334094fd110f0b0d43 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 16 Nov 2009 14:48:52 +0100 Subject: Add new theme "agogo", by Andi Albrecht. --- doc/_templates/layout.html | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'doc/_templates') diff --git a/doc/_templates/layout.html b/doc/_templates/layout.html index 080c0935..aa33576a 100644 --- a/doc/_templates/layout.html +++ b/doc/_templates/layout.html @@ -1,5 +1,12 @@ {% extends "!layout.html" %} +{% block extrahead %} + +{% endblock %} + {% block rootrellink %}
  • Sphinx home | 
  • Documentation»
  • -- cgit v1.2.1 From 4adae092b0d5d167450e4f6c7288811ea5a4c6d1 Mon Sep 17 00:00:00 2001 From: Roland Meister Date: Mon, 28 Dec 2009 17:16:19 +0100 Subject: Disable embedded css for embedded builders. Note: this change also affects all other embedded builders (but only for the Shinx doc itself). --- doc/_templates/layout.html | 2 ++ 1 file changed, 2 insertions(+) (limited to 'doc/_templates') diff --git a/doc/_templates/layout.html b/doc/_templates/layout.html index aa33576a..e41b68b1 100644 --- a/doc/_templates/layout.html +++ b/doc/_templates/layout.html @@ -1,10 +1,12 @@ {% extends "!layout.html" %} {% block extrahead %} +{%- if not embedded %} +{% endif %} {% endblock %} {% block rootrellink %} -- cgit v1.2.1 From ed446a2b73b799458e314e326178036e50210286 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 29 Dec 2009 12:32:42 +0100 Subject: Review of epub builder. Add a separate "epub_theme" config value for selecting a different theme. --- doc/_templates/layout.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'doc/_templates') diff --git a/doc/_templates/layout.html b/doc/_templates/layout.html index e41b68b1..60d217df 100644 --- a/doc/_templates/layout.html +++ b/doc/_templates/layout.html @@ -1,12 +1,13 @@ {% extends "!layout.html" %} {% block extrahead %} +{{ super() }} {%- if not embedded %} -{% endif %} +{%- endif %} {% endblock %} {% block rootrellink %} -- cgit v1.2.1