update email i think

This commit is contained in:
Gen 2024-07-19 12:01:10 -07:00
parent a4d97c5353
commit 438e029577
No known key found for this signature in database
2 changed files with 100 additions and 88 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

View file

@ -1,91 +1,103 @@
<!DOCTYPE html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Gen's Website" /> <meta property="og:title" content="Gen's Website" />
<meta <meta
property="og:description" property="og:description"
content="A little bit of information about Gen :3" content="A little bit of information about Gen :3"
/> />
<meta property="og:type" content="website" /> <meta property="og:type" content="website" />
<meta name="author" content="GenShibe" /> <meta name="author" content="GenShibe" />
<meta name="robots" content="noindex, nofollow" /> <meta name="robots" content="noindex, nofollow" />
<meta name="og:image" content="assets/DSCF8928.jpg" /> <meta name="og:image" content="assets/DSCF8928.jpg" />
<meta property="og:url" content="https://genshibe.ca" /> <meta property="og:url" content="https://genshibe.ca" />
<meta property="twitter:image" content="assets/DSCF8928.jpg" /> <meta property="twitter:image" content="assets/DSCF8928.jpg" />
<title>Gen's Website</title> <title>Gen's Website</title>
<link rel="stylesheet" href="style.css" /> <link rel="stylesheet" href="style.css" />
</head> </head>
<body> <body>
<main> <main>
<h1>Hi, my name's Gen, and</h1> <h1>Hi, my name's Gen, and</h1>
<h2> <h2>
I use I use
<a href="https://en.pronouns.page/@genshibe">They/She pronouns :3</a> <a href="https://en.pronouns.page/@genshibe"
</h2> >They/She pronouns :3</a
<hr /> >
<h2>I'm a...</h2> </h2>
<ul> <hr />
<li>Transit enthusiast &#128653;</li> <h2>I'm a...</h2>
<li> <ul>
<a href="https://www.instagram.com/spotter_gen/">Photographer</a> <li>Transit enthusiast &#128653;</li>
&#128248; <li>
</li> <a href="https://www.instagram.com/spotter_gen/"
<li>Student &#129489;&#8205;&#127891;</li> >Photographer</a
<li>Canadian &#127464;&#127462;</li> >
<li>Hong Konger 🇭🇰</li> &#128248;
<li> </li>
Maintainer at <li>Student &#129489;&#8205;&#127891;</li>
<a class="catppuccin" href="https://github.com/catppuccin/userstyles" <li>Canadian &#127464;&#127462;</li>
>Catppuccin</a <li>Hong Konger 🇭🇰</li>
> <li>
</li> Maintainer at
</ul> <a
<hr /> class="catppuccin"
<footer> href="https://github.com/catppuccin/userstyles"
<div class="socials"> >Catppuccin</a
<a href="https://discord.com/users/217892728875253760">Discord</a> >
<a href="https://www.instagram.com/spotter_gen/">Instagram</a> </li>
<a rel="me" href="https://tech.lgbt/@Genshibe">Mastodon</a> </ul>
<a href="mailto:gen@genshibe.ca">Email</a> <hr />
</div> <footer>
<span <div class="socials">
>Last updated at : <span class="last-updated"></span> | ©️ Licensed <a href="https://discord.com/users/217892728875253760"
under GPL V3 >Discord</a
<br /> >
<br /> <a href="https://www.instagram.com/spotter_gen/"
This website is part of the >Instagram</a
<br /> >
<a href="https://ctp-webr.ing/genshibe/previous">&larr;</a <a rel="me" href="https://tech.lgbt/@Genshibe">Mastodon</a>
><a href="https://ctp-webr.ing/"> ~Catppuccin Webring~ </a <a href="mailto:contact@genshibe.ca">Email</a>
><a href="https://ctp-webr.ing/genshibe/next">&rarr;</a> </div>
<br /> <span
<br /> >Last updated at : <span class="last-updated"></span> | ©️
<a href="https://github.com/GenShibe/website/">Source code</a> Licensed under GPL V3
</span> <br />
<select class="theme-selector"> <br />
<option value="latte">Latte</option> This website is part of the
<option value="frappe">Frappé</option> <br />
<option value="macchiato">Macchiato</option> <a href="https://ctp-webr.ing/genshibe/previous">&larr;</a
<option value="mocha">Mocha</option> ><a href="https://ctp-webr.ing/"> ~Catppuccin Webring~ </a
</select> ><a href="https://ctp-webr.ing/genshibe/next">&rarr;</a>
</footer> <br />
</main> <br />
<script> <a href="https://github.com/GenShibe/website/"
window.addEventListener("DOMContentLoaded", () => { >Source code</a
const selector = document.querySelector(".theme-selector"); >
selector.value = </span>
localStorage.getItem("theme") || <select class="theme-selector">
window.matchMedia("(prefers-color-scheme: dark)").matches <option value="latte">Latte</option>
? "mocha" <option value="frappe">Frappé</option>
: "latte"; <option value="macchiato">Macchiato</option>
document.documentElement.setAttribute("theme", selector.value); <option value="mocha">Mocha</option>
selector.addEventListener("change", function () { </select>
localStorage.setItem("theme", this.value); </footer>
document.documentElement.setAttribute("theme", this.value); </main>
}); <script>
}); window.addEventListener("DOMContentLoaded", () => {
</script> const selector = document.querySelector(".theme-selector");
</body> selector.value =
localStorage.getItem("theme") ||
window.matchMedia("(prefers-color-scheme: dark)").matches
? "mocha"
: "latte";
document.documentElement.setAttribute("theme", selector.value);
selector.addEventListener("change", function () {
localStorage.setItem("theme", this.value);
document.documentElement.setAttribute("theme", this.value);
});
});
</script>
</body>
</html> </html>