From d80b38bbf91c8e59387242d4419d1578a30ea412 Mon Sep 17 00:00:00 2001 From: Philipp Storz Date: Thu, 20 Dec 2018 09:31:20 +0100 Subject: [PATCH] docs: added piwik tracking code --- .../source/_templates/layout.html | 20 +++++++++++++++++++ .../en/new_main_reference/source/conf.py | 4 ++-- 2 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 docs/manuals/en/new_main_reference/source/_templates/layout.html diff --git a/docs/manuals/en/new_main_reference/source/_templates/layout.html b/docs/manuals/en/new_main_reference/source/_templates/layout.html new file mode 100644 index 00000000000..4b0632d2378 --- /dev/null +++ b/docs/manuals/en/new_main_reference/source/_templates/layout.html @@ -0,0 +1,20 @@ +{% extends "!layout.html" %} + +{% block footer %} +{{ super() }} + + + +{% endblock %} diff --git a/docs/manuals/en/new_main_reference/source/conf.py b/docs/manuals/en/new_main_reference/source/conf.py index 0ec80bbb62a..b66b8c944d4 100644 --- a/docs/manuals/en/new_main_reference/source/conf.py +++ b/docs/manuals/en/new_main_reference/source/conf.py @@ -65,7 +65,7 @@ # Add any paths that contain templates here, relative to this directory. -templates_path = ['templates'] +templates_path = ['_templates'] # The suffix(es) of source filenames. # You can specify multiple suffix as a list of string: @@ -149,7 +149,7 @@ # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['static'] +html_static_path = ['_static'] # Custom sidebar templates, must be a dictionary that maps document names # to template names.