54 lines
1.5 KiB
TypeScript
54 lines
1.5 KiB
TypeScript
const binkies = document.querySelector(".binkies")!;
|
|
|
|
const binky = [
|
|
["https://sad.ovh", "sadovh.png"],
|
|
["https://unnick.mice.tel", "unnick.png"],
|
|
[
|
|
"https://github.com/NotNite/eightyeightthirtyone",
|
|
"eighteightthirtyone.png",
|
|
],
|
|
["https://onz.ee", "shame.png"],
|
|
["https://moosyu.github.io", "moosyu.gif"],
|
|
["https://trademarkhell.net/", "tm.png"],
|
|
["https://thinliquid.dev", "lqd.png"],
|
|
["https://joosh.nekoweb.org/", "joosh.gif"],
|
|
["https://ctrlaustin.nekoweb.org", "ctrlaustin.gif"],
|
|
["https://satorikeiko.surge.sh", "satorikeiko.png"],
|
|
["https://nekoaerospace.nekoweb.org", "nekoaerospace.png"],
|
|
["https://derg.rest", "tom.png"],
|
|
["https://sillylaird.nekoweb.org/", "sillylairdb.png"],
|
|
["https://2rin.nekoweb.org", "2rin.gif"],
|
|
["https://status.cafe", "statuscafe.png"],
|
|
["https://windigone.nekoweb.org", "windigone.gif"],
|
|
["https://eye.nekoweb.org", "eye.gif"],
|
|
["insane.gif", "piracy.gif"]
|
|
];
|
|
|
|
binky.forEach((z, i) => {
|
|
if(i == binky.length-1) {
|
|
z.forEach(g => {
|
|
const img = document.createElement("img");
|
|
|
|
img.src = `/assets/binkies/${g}`;
|
|
img.width = 88;
|
|
img.height = 31;
|
|
img.alt = `!! binkie !!`;
|
|
binkies.appendChild(img);
|
|
})
|
|
return;
|
|
}
|
|
|
|
const a = document.createElement("a");
|
|
a.href = z[0];
|
|
a.ariaLabel = `${z[1]}'s website`;
|
|
a.className = "hasBadge";
|
|
|
|
const img = document.createElement("img");
|
|
|
|
img.src = `/assets/binkies/${z[1]}`;
|
|
img.width = 88;
|
|
img.height = 31;
|
|
img.alt = `${z[0]} binkie`;
|
|
a.appendChild(img);
|
|
binkies.appendChild(a);
|
|
});
|