shoebottom.ca/index.html

62 lines
2.8 KiB
HTML

<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/png" sizes="512x512" href="/favicon.png">
<meta name="application-name" content="Isaac's Website">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="Keywords" content="blog, git, , isaac, shoebottom, jellyfin">
<meta name="Description" content="Isaac Shoebottom's website homepage!">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script>
// Detects the user's preferred color scheme and sets the theme accordingly
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
document.getElementsByTagName('html')[0].setAttribute('data-bs-theme', 'dark');
} else {
document.getElementsByTagName('html')[0].setAttribute('data-bs-theme', 'light');
}
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', event => {
let theme = event.matches ? "dark" : "light";
document.getElementsByTagName('html')[0].setAttribute('data-bs-theme', theme);
});
</script>
<title>Isaac's Website</title>
</head>
<body class="container-fluid">
<div class="d-flex align-items-center flex-column">
<h1>Isaac's Homepage</h1>
<div>
<div>
<div>List of things on this domain!</div>
<ul>
<li><a href="https://blog.shoebottom.ca">Blog</a></li>
<li><a href="https://git.shoebottom.ca">Git Forge</a></li>
<li><a href="https://live.shoebottom.ca">Livestream</a></li>
<li><a href="https://jellyfin.shoebottom.ca">Jellyfin</a></li>
<li><a href="https://jellyfin-vue.shoebottom.ca">Jellyin Vue</a></li>
<li><a href="https://searx.shoebottom.ca">Searx</a></li>
<li><a href="https://cobalt.shoebottom.ca">Cobalt</a></li>
<li><a href="https://gotify.shoebottom.ca">Gotify</a></li>
<li><a href="https://vikunja.shoebottom.ca">Vikunja</a></li>
<li><a href="https://wger.shoebottom.ca">wger</a></li>
<li><a href="https://radicale.shoebottom.ca">Radicale</a></li>
<li><a href="https://nextcloud.shoebottom.ca">Nextcloud</a></li>
<li><a href="https://medication.shoebottom.ca">(Self Made) Medication Tracker</a></li>
<li><a href="https://culturalconnections.shoebottom.ca">(Self Made) Cultural Connections</a></li>
</ul>
</div>
<div>
<div>Link tree</div>
<ul>
<li><a href="https://github.com/IsaacShoebottom">GitHub</a></li>
<li><a href="https://steamcommunity.com/id/IsaacShoebottom/">Steam</a></li>
<li><a href="https://www.youtube.com/@IsaacShoebottom">YouTube</a></li>
<li><a href="https://www.linkedin.com/in/isaac-shoebottom/">LinkedIn 🤮</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>