mirror of
https://github.com/GenShibe/website.git
synced 2025-02-12 15:04:49 +00:00
81 lines
3.2 KiB
HTML
81 lines
3.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta property="og:title" content="Gen's Website" />
|
|
<meta
|
|
property="og:description"
|
|
content="A little bit of information about me :3"
|
|
/>
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://genshibe.ca" />
|
|
<title>Gen's Website</title>
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>Hi, my name's Gen, and</h1>
|
|
<h2>
|
|
I use
|
|
<a href="https://en.pronouns.page/@genshibe">They/She pronouns :3</a>
|
|
</h2>
|
|
<hr />
|
|
<h2>I'm just a...</h2>
|
|
<ul>
|
|
<li>Transit enthusiast 🚍</li>
|
|
<li><a href="https://www.instagram.com/spotter_gen/">Photographer</a> 📸</li>
|
|
<li>Student 🧑‍🎓</li>
|
|
<li>Canadian 🇨🇦</li>
|
|
<li>Hong Konger 🇭🇰</li>
|
|
<li>
|
|
Maintainer at
|
|
<a
|
|
class="catppuccin"
|
|
href="https://github.com/catppuccin/userstyles"
|
|
>Catppuccin</a
|
|
>
|
|
</li>
|
|
</ul>
|
|
<hr />
|
|
<footer>
|
|
<div class="socials">
|
|
<a href="https://discord.com/users/217892728875253760"
|
|
>Discord</a
|
|
>
|
|
<a href="https://www.instagram.com/spotter_gen/"
|
|
>Instagram</a
|
|
>
|
|
<a href="mailto:gen@genshibe.ca">Email</a>
|
|
</div>
|
|
<span
|
|
>Last updated: <span class="last-updated"></span> | ©️
|
|
Licensed under GPL V3 |
|
|
<a href="https://github.com/GenShibe/website/"
|
|
>Source code</a
|
|
></span
|
|
>
|
|
<select class="theme-selector">
|
|
<option value="latte">Latte</option>
|
|
<option value="frappe">Frappé</option>
|
|
<option value="macchiato">Macchiato</option>
|
|
<option value="mocha">Mocha</option>
|
|
</select>
|
|
</footer>
|
|
</main>
|
|
<script>
|
|
window.addEventListener("DOMContentLoaded", () => {
|
|
const selector = document.querySelector(".theme-selector");
|
|
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>
|