From b33ae55752f7df3dac33ea565fbb76b416e56d6b Mon Sep 17 00:00:00 2001 From: Gabriel Simmer Date: Sun, 14 Apr 2024 23:49:51 +0100 Subject: [PATCH] gmem.ca default to human mode, title update --- gmem.ca/index.html | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/gmem.ca/index.html b/gmem.ca/index.html index 135a040..a5a209f 100644 --- a/gmem.ca/index.html +++ b/gmem.ca/index.html @@ -4,20 +4,22 @@ - gmem.ca + arch.dog
- +
A cute golden retriever with a stylish blue hairstyle and glasses -

arf arf

+

Arch is a dog

-

*wags tail* awoo woof woof bark

-

yip arf

+

hi! follow me on the fedi

+

check out my fursona

+

check out my projects

+

Buy Me a Coffee at ko-fi.com

@@ -38,6 +40,7 @@ const header = document.querySelector("h1"); const social = document.querySelector("#social"); const fursona = document.querySelector("#fursona"); + const projects = document.querySelector("#projects"); addEventListener("load", (event) => reloaddog()); checkbox.addEventListener('change', function() { @@ -53,10 +56,12 @@ header.innerHTML = "arf arf!"; social.innerHTML = "*wags tail* awoo woof woof bark" fursona.innerHTML = "yip arf" + projects.innerHTML = "grrr ruff" } else { header.innerHTML = "Arch is a dog"; social.innerHTML = "hi! follow me on the fedi" fursona.innerHTML = "check out my fursona" + projects.innerHTML = "check out my projects" } }