From 38188e1dfe05f39e7daaf74162bd5dcf3e1e7af4 Mon Sep 17 00:00:00 2001 From: Paul Osinski Date: Mon, 2 Feb 2026 17:42:05 -0500 Subject: [PATCH 1/3] update robots.txt for indexing --- docs/layouts/_partials/seo/robots.html | 3 +++ docs/layouts/robots.txt | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 docs/layouts/_partials/seo/robots.html create mode 100644 docs/layouts/robots.txt diff --git a/docs/layouts/_partials/seo/robots.html b/docs/layouts/_partials/seo/robots.html new file mode 100644 index 0000000000..128d19bf8f --- /dev/null +++ b/docs/layouts/_partials/seo/robots.html @@ -0,0 +1,3 @@ +{{- with .Params.seo.robots }} + +{{- end }} \ No newline at end of file diff --git a/docs/layouts/robots.txt b/docs/layouts/robots.txt new file mode 100644 index 0000000000..3cba9e1766 --- /dev/null +++ b/docs/layouts/robots.txt @@ -0,0 +1,3 @@ +User-agent: * +Disallow: +Sitemap: {{ "/sitemap.xml" | absURL }} \ No newline at end of file From a7edfd12809b629aa290bfa284aefefee7dc1c13 Mon Sep 17 00:00:00 2001 From: Paul Osinski Date: Mon, 2 Feb 2026 18:13:27 -0500 Subject: [PATCH 2/3] add audience content to algolia indexing --- docs/layouts/_partials/head/custom-head.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/layouts/_partials/head/custom-head.html b/docs/layouts/_partials/head/custom-head.html index cadc425ac3..5f14c4648e 100644 --- a/docs/layouts/_partials/head/custom-head.html +++ b/docs/layouts/_partials/head/custom-head.html @@ -1,6 +1,7 @@ -{{ if site.Params.add_ons.docSearch -}} +{{ if site.Params.add_ons.docSearch -}} {{ $options := (dict "targetPath" "/css/main.min.css" "outputStyle" "compressed") }} {{ $style := resources.Get "scss/app.scss" | css.Sass $options }} - + {{ end -}} + \ No newline at end of file From b81664963bd98eebeeff3121ad65682585dd78e3 Mon Sep 17 00:00:00 2001 From: Paul Osinski Date: Tue, 3 Feb 2026 10:29:15 -0500 Subject: [PATCH 3/3] add cache refresh for release notes version --- docs/config/_default/hugo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/config/_default/hugo.toml b/docs/config/_default/hugo.toml index 13367504ca..0b62354212 100644 --- a/docs/config/_default/hugo.toml +++ b/docs/config/_default/hugo.toml @@ -46,9 +46,12 @@ copyRight = "Copyright (c) 2020-2024 Thulite" priority = 0.5 [caches] + [caches.getresource] + dir = ":cacheDir/:project" + maxAge = "1h" [caches.getjson] dir = ":cacheDir/:project" - maxAge = -1 # "30m" + maxAge = "1h" [taxonomies] contributor = "contributors"