add friends to arch.dog
All checks were successful
Lint / lint (push) Successful in 21s
Sync gmem.ca / sync (push) Successful in 32s

This commit is contained in:
Gabriel Simmer 2024-04-15 09:14:45 +01:00
parent bf73581ecd
commit e0469345bd
Signed by: arch
SSH key fingerprint: SHA256:m3OEcdtrnBpMX+2BDGh/byv3hrCekCLzDYMdvGEKPPQ
6 changed files with 31 additions and 1 deletions

BIN
gmem.ca/arch.dog.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 885 B

BIN
gmem.ca/badges/hack13.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
gmem.ca/badges/keeri.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 462 B

BIN
gmem.ca/badges/zatzhing.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View file

@ -20,8 +20,18 @@
<p id="fursona"><a href="https://fursona.gmem.ca/gmem.ca">check out my fursona</a></p>
<p id="projects"><a href="https://gabrielsimmer.com">check out my projects</a></p>
<h2>friends!</h2>
<div id="friends">
<a href="https://rawr.ing"><p>kakious</p></a>
<a href="https://zatzhing.me/"><img src="./badges/zatzhing.gif" alt="zatzhing.me gif button"></a>
<a href="https://www.hack13.me/"><img src="./badges/hack13.png" alt="hack13.me button"></a>
<a href="https://keeri.place/"><img src="./badges/keeri.png" alt="keeri.place button"></a>
<a href="https://steffo.dev/"><p>steffo</p></a>
</div>
<p><a href="https://arch.dog"><img src="./arch.dog.png" alt="pixel art website button for this very website! black text on a background matching my fursona that says arch.dog"></a></p>
<p><a href='https://ko-fi.com/N4N4I73HI' target='_blank'>
<img height='36' style='border:0px;height:36px;' src='./kofi.png' border='0' alt='Buy Me a Coffee at ko-fi.com' />
<img height='36' style='border:0px;height:36px;' src='./kofi.png' border='0' alt='Buy Me a Coffee at ko-fi.com' />
</a></p>
</main>
<style>
@ -38,6 +48,7 @@
<script>
const checkbox = document.querySelector("input[name=language]");
const header = document.querySelector("h1");
const friends = document.querySelector("h2");
const social = document.querySelector("#social");
const fursona = document.querySelector("#fursona");
const projects = document.querySelector("#projects");
@ -54,11 +65,13 @@
const reloaddog = () => {
if (localStorage.getItem("dog") == "true") {
header.innerHTML = "arf arf!";
friends.innerHTML = "aruff!";
social.innerHTML = "<i>*wags tail*</i> awoo woof woof <a href=\"https://floofy.tech/@arch\" rel=\"me\">bark</a>"
fursona.innerHTML = "<a href=\"https://fursona.gmem.ca/gmem.ca\">yip arf</a>"
projects.innerHTML = "<a href=\"https://gabrielsimmer.com\">grrr ruff</a>"
} else {
header.innerHTML = "Arch is a dog";
friends.innerHTML = "friends!";
social.innerHTML = "<i>hi!</i> follow me on the <a href=\"https://floofy.tech/@arch\" rel=\"me\">fedi</a>"
fursona.innerHTML = "<a href=\"https://fursona.gmem.ca/gmem.ca\">check out my fursona</a>"
projects.innerHTML = "<a href=\"https://gabrielsimmer.com\">check out my projects</a>"

View file

@ -101,3 +101,20 @@ footer {
.rss-group {
margin: 10px 0;
}
#friends {
display: flex;
justify-content: flex-start;
flex-wrap: wrap;
}
#friends a {
margin: 0px 5px 0px 0px;
}
#friends a, #friends img {
width: 88px;
height: 31px;
align-content: center;
text-align: center;
}