summary refs log tree commit diff stats
path: root/404.html
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2024-05-14 11:11:26 +0800
committerRunxi Yu <me@runxiyu.org>2024-05-14 11:11:26 +0800
commit182a48ca8d70b7292d311365f308866ecd7f5c0b (patch)
tree2763b0f9795926fcecdac4d9e3852f0840571ec6 /404.html
parenta1dcdcae637c50d22e4a803759ccc2504f9f38cb (diff)
downloadwww-182a48ca8d70b7292d311365f308866ecd7f5c0b.tar.gz
Update all HTML templates
Diffstat (limited to '404.html')
-rw-r--r--404.html51
1 files changed, 31 insertions, 20 deletions
diff --git a/404.html b/404.html
index e3048b4..d080bdd 100644
--- a/404.html
+++ b/404.html
@@ -1,22 +1,33 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
-	<head>
-		<title>Not Found</title>
-		<link rel="stylesheet" href="/oldstyle.css" />
-		<meta name="viewport" content="width=device-width, initial-scale=1.0" />
-		<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
-	</head>
-	<body>
-		<h1>Not Found</h1>
-		<div id="main">
-			<p>The requested file does not exist on this web server.</p>
-			<p>Many links have changed over time, thus links to here may break.  <a href="/">The homepage</a> might get you there.</p>
-			<p>This Website's history is logged in <a href="https://git.runxiyu.org/runxiyu/current/www.git/">a Git repository</a>.  The file you're looking for may be in there somewhere.</p>
-		</div>
-		<div id="footer">
-			<hr />
-			<p><a href="/">Runxi Yu's Website</a></p>
+<!DOCTYPE html>
+<html lang="en">
+<head>
+	<meta charset="UTF-8" />
+	<title>404 Not Found</title>
+	<link rel="stylesheet" href="./style.css" />
+	<link rel="icon" href="./favicon.ico" sizes="any" />
+	<!--link rel="icon" href="./icon.svg" type="image/svg+xml" / -->
+	<meta name="viewport" content="width=device-width, initial-scale=1.0" />
+	<meta name="theme-color" content="#241504" />
+	<meta name="color-scheme" content="light dark">
 
-		</div>
-	</body>
+</head>
+<body>
+<header>
+	<h1>404 Not Found</h1>
+</header>
+
+<article>
+	<p>The requested file does not exist on this web server.</p>
+	<p>Many links have changed over time, thus links to here may break.  <a href="/">The homepage</a> might get you there.</p>
+	<p>This Website's history is logged in <a href="https://git.runxiyu.org/runxiyu/current/www.git/">a Git repository</a>.  The file you're looking for may be in there somewhere.</p>
+</article>
+
+<footer>
+	<ul role="list">
+		<li><a href="./">Home</a></li>
+		<li>Runxi Yu</li>
+		<li><a rel="license" href="./pubdom.html">Public Domain</a></li>
+	</ul>
+</footer>
+</body>
 </html>