From 82d0c0f19639f776cd1ba8b81420e679058b6876 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 22 Dec 2025 12:43:31 -0700 Subject: [PATCH] Add robots.txt --- content/files/robots.txt | 3 +++ pelicanconf.py | 7 +++++++ 2 files changed, 10 insertions(+) create mode 100644 content/files/robots.txt diff --git a/content/files/robots.txt b/content/files/robots.txt new file mode 100644 index 0000000..1c07868 --- /dev/null +++ b/content/files/robots.txt @@ -0,0 +1,3 @@ +User-agent: * +Content-Signal: ai-train=no, search=yes, ai-input=no +Allow: / diff --git a/pelicanconf.py b/pelicanconf.py index fb3c50e..69085be 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -3,6 +3,12 @@ SITENAME = 'Vexing Workshop' SITEURL = "https://vexingworkshop.com" PATH = "content" +STATIC_PATHS = [ + 'files/robots.txt' +] +EXTRA_PATH_METADATA = { + 'files/robots.txt': {'path': 'robots.txt'}, +} TIMEZONE = 'America/Denver' @@ -30,6 +36,7 @@ LINKS = ( SOCIAL = ( ("Instagram", "https://www.instagram.com/vexingworkshop/"), ("Mastodon", "https://hackers.town/@signal9@masto.hackers.town"), + ("Blue Sky", "https://bsky.app/profile/vexingworkshop.bsky.social"), ) SCRIPTS = ( -- 2.39.5