From eeca382ce8a17cca30a023d2d54828e9ca21532c Mon Sep 17 00:00:00 2001 From: Nigel Brown Date: Mon, 29 Jun 2026 17:53:40 +0530 Subject: [PATCH 1/3] sample search implementation Added Algolia site verification and DocSearch integration. Signed-off-by: Nigel Brown --- templates/default.html | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/templates/default.html b/templates/default.html index 10efa26d..e1189b10 100644 --- a/templates/default.html +++ b/templates/default.html @@ -1,4 +1,7 @@ -{%- block head -%}{%- endblock -%} +{%- block head -%} + + +{%- endblock -%} {% include "includes/head.html" %} + From ea5ef0683dc1341d901e01babd241584380fd1f5 Mon Sep 17 00:00:00 2001 From: Nigel Brown Date: Mon, 29 Jun 2026 18:08:18 +0530 Subject: [PATCH 2/3] Remove unused stylesheet and meta tags from default.html Removed unused stylesheet and meta verification from head block. Signed-off-by: Nigel Brown --- templates/default.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/templates/default.html b/templates/default.html index e1189b10..b051cba3 100644 --- a/templates/default.html +++ b/templates/default.html @@ -1,6 +1,4 @@ {%- block head -%} - - {%- endblock -%} {% include "includes/head.html" %} From 24ece4f09a23953837e24505854cecbb4f6e3791 Mon Sep 17 00:00:00 2001 From: Nigel Brown Date: Mon, 29 Jun 2026 18:10:44 +0530 Subject: [PATCH 3/3] Add Algolia site verification meta tag and stylesheet Signed-off-by: Nigel Brown --- templates/includes/head.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/templates/includes/head.html b/templates/includes/head.html index 68a4ccb4..9696a207 100644 --- a/templates/includes/head.html +++ b/templates/includes/head.html @@ -7,6 +7,7 @@ + {% if page and page.extra and page.extra.custom_meta%} {{ page.extra.custom_meta | safe }} {% endif %} @@ -55,6 +56,7 @@ {%- endif -%}"> + @@ -74,6 +76,7 @@ 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-MFFCB7SR'); + {% if page and page.extra and page.extra.head_extra %}{{ page.extra.head_extra }}{% endif %} - \ No newline at end of file +