From 38d37c533a6141a94821500918b633189bcc2565 Mon Sep 17 00:00:00 2001 From: Felipe Zipitria Date: Mon, 17 Aug 2026 19:39:02 -0300 Subject: [PATCH] Add Content-Signal directives to robots.txt Replace Hugo's default generated robots.txt with a template declaring search=yes, ai-input=yes, ai-train=no. Co-Authored-By: Claude Opus 5 (1M context) --- layouts/robots.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 layouts/robots.txt diff --git a/layouts/robots.txt b/layouts/robots.txt new file mode 100644 index 0000000..3dedd3d --- /dev/null +++ b/layouts/robots.txt @@ -0,0 +1,13 @@ +# As a condition of accessing this website, you agree to abide by the +# following content signals: +# (a) If a content signal is "yes", you may collect content for the +# corresponding purpose. +# (b) If a content signal is "no", you may not collect content for the +# corresponding purpose. +# See https://contentsignals.org/ for details. + +User-agent: * +Content-Signal: search=yes, ai-input=yes, ai-train=no +Allow: / + +Sitemap: {{ "sitemap.xml" | absURL }}