This commit is contained in:
parent
05f62f7025
commit
a91e7967b4
4 changed files with 37 additions and 40 deletions
34
website/scripts/binkies.ts
Normal file
34
website/scripts/binkies.ts
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
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"],
|
||||
];
|
||||
|
||||
binky.forEach((z) => {
|
||||
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);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue