From 82826a9f2025a93198409b71c583a2fbb42ea7bf Mon Sep 17 00:00:00 2001 From: asanvaq Date: Wed, 7 Jan 2026 13:34:01 +0100 Subject: [PATCH 1/2] fix: fixing template path --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 4b410cb..ffbb317 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -215,7 +215,7 @@ ####################### html_static_path = ["_static"] -templates_path = ["_templates"] +templates_path = ["_static/_templates"] ############# From b0c9bfa49ef5d7dbf657e9b85ed8b5aaba4aa660 Mon Sep 17 00:00:00 2001 From: asanvaq Date: Wed, 7 Jan 2026 13:41:18 +0100 Subject: [PATCH 2/2] fix: adding page.html for GA tags --- docs/_static/_templates/page.html | 49 +++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 docs/_static/_templates/page.html diff --git a/docs/_static/_templates/page.html b/docs/_static/_templates/page.html new file mode 100644 index 0000000..3a5140b --- /dev/null +++ b/docs/_static/_templates/page.html @@ -0,0 +1,49 @@ +{% extends "furo/page.html" %} + +{% block footer %} + {% include "footer.html" %} +{% endblock footer %} + +{% block body -%} + {% include "header.html" %} + {{ super() }} +{%- endblock body %} + +{% if meta and ((meta.discourse and discourse_prefix) or meta.relatedlinks) %} + {% set furo_hide_toc_orig = furo_hide_toc %} + {% set furo_hide_toc=false %} +{% endif %} + +{% block right_sidebar %} +
+ {% if not furo_hide_toc_orig %} +
+ + {{ _("Contents") }} + +
+
+
+ {{ toc }} +
+
+ {% endif %} + {% if meta and ((meta.discourse and discourse_prefix) or meta.relatedlinks) %} + + + {% endif %} +
+{% endblock right_sidebar %} \ No newline at end of file