This commit is contained in:
parent
e4cf28422f
commit
52e5518c4d
1 changed files with 29 additions and 0 deletions
|
|
@ -12,12 +12,41 @@ document.addEventListener("DOMContentLoaded", () => {
|
||||||
bucketIframe.src =
|
bucketIframe.src =
|
||||||
"https://webring.bucketfish.me/embed.html?name=☹️☹️☹️.ovh&lightmode=true";
|
"https://webring.bucketfish.me/embed.html?name=☹️☹️☹️.ovh&lightmode=true";
|
||||||
webringsElement.appendChild(bucketIframe);
|
webringsElement.appendChild(bucketIframe);
|
||||||
|
const prigoanaWrapper = document.createElement("div");
|
||||||
|
prigoanaWrapper.id = "prigoana-webring";
|
||||||
|
prigoanaWrapper.style.display = "flex";
|
||||||
|
prigoanaWrapper.style.gap = "0.75rem";
|
||||||
|
prigoanaWrapper.style.alignItems = "center";
|
||||||
|
prigoanaWrapper.style.justifyContent = "center";
|
||||||
|
prigoanaWrapper.style.marginTop = "5px";
|
||||||
|
|
||||||
|
|
||||||
|
const prev = document.createElement("a");
|
||||||
|
prev.href = `https://webring.prigoana.com/prev/sad.ovh`;
|
||||||
|
prev.textContent = "←";
|
||||||
|
|
||||||
|
const home = document.createElement("a");
|
||||||
|
home.href = "https://webring.prigoana.com/";
|
||||||
|
home.textContent = "prigoana.com Webring";
|
||||||
|
|
||||||
|
const rand = document.createElement("a");
|
||||||
|
rand.href = `https://webring.prigoana.com/rand/sad.ovh`;
|
||||||
|
rand.textContent = "?";
|
||||||
|
|
||||||
|
const next = document.createElement("a");
|
||||||
|
next.href = `https://webring.prigoana.com/next/sad.ovh`;
|
||||||
|
next.textContent = "→";
|
||||||
|
|
||||||
|
prigoanaWrapper.append(prev, home, rand, next);
|
||||||
|
webringsElement.appendChild(prigoanaWrapper);
|
||||||
|
|
||||||
const gitgudringScript = document.createElement("script");
|
const gitgudringScript = document.createElement("script");
|
||||||
gitgudringScript.src = "https://mechagic.party/1stylescripts/gitgudring.js";
|
gitgudringScript.src = "https://mechagic.party/1stylescripts/gitgudring.js";
|
||||||
gitgudringScript.defer = true;
|
gitgudringScript.defer = true;
|
||||||
webringsElement.appendChild(gitgudringScript);
|
webringsElement.appendChild(gitgudringScript);
|
||||||
|
|
||||||
|
const prigoana = document.createElement("div");
|
||||||
|
|
||||||
const noAIMapHTML = `
|
const noAIMapHTML = `
|
||||||
<map name="noaitxtwidget">
|
<map name="noaitxtwidget">
|
||||||
<area href="https://baccyflap.com/noai" target="_blank" shape="rect" coords="28,0,219,30" alt="no ai webring" title="no ai webring">
|
<area href="https://baccyflap.com/noai" target="_blank" shape="rect" coords="28,0,219,30" alt="no ai webring" title="no ai webring">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue