84 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en-US">
 | 
						|
 | 
						|
<head>
 | 
						|
	<meta charset="UTF-8">
 | 
						|
	<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
 | 
						|
	<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
 | 
						|
	<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
 | 
						|
	<link rel="manifest" href="/site.webmanifest">
 | 
						|
	<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
 | 
						|
	<meta name="apple-mobile-web-app-title" content="Isaac's Website">
 | 
						|
	<meta name="application-name" content="Isaac's Website">
 | 
						|
	<meta name="msapplication-TileColor" content="#da532c">
 | 
						|
	<meta name="theme-color" content="#ffffff">
 | 
						|
	<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!">
 | 
						|
	<script>
 | 
						|
		function modeSwitch() {
 | 
						|
			const darkModeButton = document.getElementById("dark-mode-button")
 | 
						|
			const bodyElement = document.querySelector('body')
 | 
						|
 | 
						|
			if (darkModeButton.checked) {
 | 
						|
				bodyElement.style.backgroundColor = "rgb(25, 25, 25)"
 | 
						|
				bodyElement.style.color = "rgb(240, 240, 240)"
 | 
						|
 | 
						|
				localStorage.setItem("root.darkMode", true)
 | 
						|
			}
 | 
						|
			else {
 | 
						|
				bodyElement.style.backgroundColor = "rgb(240, 240, 240)"
 | 
						|
				bodyElement.style.color = "rgb(25, 25, 25)"
 | 
						|
 | 
						|
				localStorage.setItem("root.darkMode", false)
 | 
						|
			}
 | 
						|
		}
 | 
						|
	</script>
 | 
						|
 | 
						|
	<title>Isaac's Website</title>
 | 
						|
 | 
						|
	<link rel="stylesheet" href="style.css">
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
	<div class="text">
 | 
						|
		<h1>Isaac's domain</h1>
 | 
						|
		<div id="dark-mode">
 | 
						|
			<h2>Dark Mode</h2>
 | 
						|
			<div class="button r center" id="button-1">
 | 
						|
				<input type="checkbox" class="checkbox" id="dark-mode-button" onclick="modeSwitch()">
 | 
						|
				<div class="knobs"></div>
 | 
						|
				<div class="layer"></div>
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
		<p>List of things on this domain!</p>
 | 
						|
		<ul>
 | 
						|
			<li><a href="https://blog.shoebottom.ca">Memes</a></li>
 | 
						|
			<li><a href="https://git.shoebottom.ca">My Git repos</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://dynmap.shoebottom.ca">Minecraft Dynmap</a></li> -->
 | 
						|
			<li><a href="/host/memes/">Memes</a></li>
 | 
						|
			<!-- <li><a href="/music/">Music</a></li> -->
 | 
						|
			<!-- <li><a href="/tv/">TV</a></li> -->
 | 
						|
			<!-- <li><a href="/movies/">Movies</a></li> -->
 | 
						|
			<!-- <li><a href="/anime/">Anime</a></li> -->
 | 
						|
		</ul>
 | 
						|
	</div>
 | 
						|
	<script>
 | 
						|
		let darkModeCheck = localStorage.getItem("root.darkMode")
 | 
						|
		if (darkModeCheck === "true") {
 | 
						|
			const darkModeCheckbox = document.getElementById("dark-mode-button")
 | 
						|
			darkModeCheckbox.checked = true
 | 
						|
			modeSwitch()
 | 
						|
		}
 | 
						|
	</script>
 | 
						|
</body>
 | 
						|
 | 
						|
<div class="image">
 | 
						|
	<img src="image.jpg" alt="Biden's America" class="image">
 | 
						|
	<img src="image2.jpg" alt="It's ok little minion" class="image">
 | 
						|
	<img src="https://i.imgur.com/aEyOuaF.png" width="30%" height="30%" alt="It's the crazy frog!" class="image">
 | 
						|
</div>
 | 
						|
 | 
						|
</html> |