website/index.html

83 lines
3.3 KiB
HTML
Raw Normal View History

2024-03-06 17:05:50 -05:00
<!doctype html>
2024-01-27 20:43:36 -08:00
<html lang="en">
2024-03-06 17:05:50 -05:00
<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"
2024-03-19 00:12:37 -07:00
/>
2024-03-06 17:05:50 -05:00
<meta property="og:type" content="website" />
2024-03-21 23:52:16 -07:00
<meta property="og:url" content="https://genshibe.ca" />
2024-03-06 17:05:50 -05:00
<title>Gen's Website</title>
2024-03-06 17:17:53 -08:00
<link rel="stylesheet" href="style.css" />
2024-03-06 17:05:50 -05:00
</head>
<body>
<main>
2024-03-22 00:21:30 -07:00
<h1>Hi, my name's Gen, and</h1>
2024-03-06 17:05:50 -05:00
<h2>
I use
2024-03-21 23:52:16 -07:00
<a href="https://en.pronouns.page/@genshibe">They/She pronouns :3</a>
2024-03-06 17:05:50 -05:00
</h2>
<hr />
2024-03-22 00:17:41 -07:00
<h2>I'm just a...</h2>
2024-03-06 17:05:50 -05:00
<ul>
<li>Transit enthusiast &#128653;</li>
2024-03-21 23:52:16 -07:00
<li><a href="https://www.instagram.com/spotter_gen/">Photographer</a> &#128248;</li>
2024-03-06 17:05:50 -05:00
<li>Student &#129489;&#8205;&#127891;</li>
<li>Canadian &#127464;&#127462;</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
>
2024-04-01 02:18:37 -07:00
<a rel="me" href="https://tech.lgbt/@Genshibe">Mastodon</a>
2024-03-21 23:52:16 -07:00
<a href="mailto:gen@genshibe.ca">Email</a>
2024-03-06 17:05:50 -05:00
</div>
<span
2024-03-22 00:21:30 -07:00
>Last updated: <span class="last-updated"></span> | ©️
2024-03-06 17:05:50 -05:00
Licensed under GPL V3 |
2024-03-21 23:52:16 -07:00
<a href="https://github.com/GenShibe/website/"
2024-03-07 00:16:24 -08:00
>Source code</a
2024-03-06 17:05:50 -05:00
></span
>
2024-03-06 17:32:56 -05:00
<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>
2024-03-06 17:05:50 -05:00
</footer>
</main>
2024-03-19 00:12:37 -07:00
<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);
});
});
2024-03-06 17:05:50 -05:00
</script>
</body>
2024-02-12 16:27:23 -08:00
</html>