From a1f84863252e937b3f93a65d8f5686ba3322bb7d Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Wed, 29 Oct 2014 08:11:46 +0100 Subject: [PATCH] Move HTML templates to their own subdir. --- Doc/conf.py | 2 +- Doc/tools/{ => templates}/download.html | 0 Doc/tools/{ => templates}/indexcontent.html | 0 Doc/tools/{ => templates}/indexsidebar.html | 0 Doc/tools/{ => templates}/layout.html | 0 Doc/tools/{ => templates}/opensearch.xml | 0 6 files changed, 1 insertion(+), 1 deletion(-) rename Doc/tools/{ => templates}/download.html (100%) rename Doc/tools/{ => templates}/indexcontent.html (100%) rename Doc/tools/{ => templates}/indexsidebar.html (100%) rename Doc/tools/{ => templates}/layout.html (100%) rename Doc/tools/{ => templates}/opensearch.xml (100%) diff --git a/Doc/conf.py b/Doc/conf.py index ff073b112a5..84458ff0be9 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -53,7 +53,7 @@ html_short_title = '%s Documentation' % release html_last_updated_fmt = '%b %d, %Y' # Path to find HTML templates. -templates_path = ['tools'] +templates_path = ['tools/templates'] # Custom sidebar templates, filenames relative to this file. html_sidebars = { diff --git a/Doc/tools/download.html b/Doc/tools/templates/download.html similarity index 100% rename from Doc/tools/download.html rename to Doc/tools/templates/download.html diff --git a/Doc/tools/indexcontent.html b/Doc/tools/templates/indexcontent.html similarity index 100% rename from Doc/tools/indexcontent.html rename to Doc/tools/templates/indexcontent.html diff --git a/Doc/tools/indexsidebar.html b/Doc/tools/templates/indexsidebar.html similarity index 100% rename from Doc/tools/indexsidebar.html rename to Doc/tools/templates/indexsidebar.html diff --git a/Doc/tools/layout.html b/Doc/tools/templates/layout.html similarity index 100% rename from Doc/tools/layout.html rename to Doc/tools/templates/layout.html diff --git a/Doc/tools/opensearch.xml b/Doc/tools/templates/opensearch.xml similarity index 100% rename from Doc/tools/opensearch.xml rename to Doc/tools/templates/opensearch.xml