webserver-config/install/error-pages/404.html

69 lines
1.6 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Not Found</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
line-height: 1.6;
max-width: 600px;
margin: 40px auto;
padding: 0 20px;
color: #333;
background: #fff;
}
h1 {
font-size: 24px;
margin-bottom: 16px;
color: #d00;
}
p {
margin: 12px 0;
}
.help {
background: #f5f5f5;
border-left: 4px solid #ddd;
padding: 12px;
margin: 20px 0;
}
@media (prefers-color-scheme: dark) {
body {
background: #222;
color: #ddd;
}
h1 {
color: #ff4444;
}
.help {
background: #333;
border-left-color: #555;
}
}
</style>
</head>
<body>
<main role="main">
<h1>404 Page Not Found</h1>
<p>Sorry, we couldn't find the page you're looking for.</p>
<div class="help">
<p>You might want to:</p>
<ul>
<li>Double-check the URL for typos</li>
<li>Go back to the <a href="/">homepage</a></li>
<li>Check if the content has moved or been renamed</li>
</ul>
</div>
</main>
</body>
</html>