From d13635c0dcae301f2eb9210091fccae287d75411 Mon Sep 17 00:00:00 2001 From: yourfriendoss Date: Sat, 6 Dec 2025 14:03:02 +0200 Subject: [PATCH] add no-ai webring --- website/scripts/webrings.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/website/scripts/webrings.ts b/website/scripts/webrings.ts index 19581a9..71fc5c1 100644 --- a/website/scripts/webrings.ts +++ b/website/scripts/webrings.ts @@ -17,4 +17,17 @@ document.addEventListener("DOMContentLoaded", () => { gitgudringScript.src = "https://mechagic.party/1stylescripts/gitgudring.js"; gitgudringScript.defer = true; webringsElement.appendChild(gitgudringScript); + + const noAIMapHTML = ` + + no ai webring + previous + random + next + + a white rectangular box with a dashed outline with the words 'the no ai webring' in the centre, with a parenthetical question mark next to it and two arrows pointing left and right to either side + `; + const noAIContainer = document.createElement("div"); + noAIContainer.innerHTML = noAIMapHTML; + webringsElement.appendChild(noAIContainer); });