mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-22 03:13:30 +01:00
added a 404 page
This commit is contained in:
parent
a1a53b6b2e
commit
932e64ebce
2 changed files with 69 additions and 0 deletions
|
@ -5,6 +5,7 @@ ExpiresByType text/javascript A2592000
|
|||
ExpiresByType application/javascript A2592000
|
||||
|
||||
Options -Indexes
|
||||
ErrorDocument 404 /404.html
|
||||
|
||||
RewriteEngine On
|
||||
RewriteBase /
|
||||
|
|
68
web/404.html
Normal file
68
web/404.html
Normal file
|
@ -0,0 +1,68 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>404</title>
|
||||
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato&display=swap">
|
||||
<link rel="icon" href="favicon.ico">
|
||||
|
||||
<style>
|
||||
body {
|
||||
font-family: Lato, sans-serif;
|
||||
font-display: swap;
|
||||
background-color: rgb(49, 101, 43);
|
||||
}
|
||||
|
||||
.content {
|
||||
color: white;
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
left: 50%;
|
||||
top: 40%;
|
||||
transform: translate(-50%, -60%);
|
||||
}
|
||||
|
||||
.disclaimer {
|
||||
position: absolute;
|
||||
bottom: 10px;
|
||||
right: 10px;
|
||||
color: darkgray;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #8db3f4;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.email {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
.go-home {
|
||||
margin-top: 25px;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="content">
|
||||
<h1>🏡 Four Oh Four</h1>
|
||||
<p>
|
||||
A <em>tiny</em> error occurred: We can't find this page.
|
||||
</p>
|
||||
<p>
|
||||
<em style="color: darkgray;">Get it?</em>
|
||||
</p>
|
||||
<p class="go-home">
|
||||
<a href="https://tinylifegame.com">Go home</a>
|
||||
</p>
|
||||
</div>
|
||||
<div class="disclaimer">
|
||||
<em>If you think there should be something here, please notify us at <a class="email" href="mailto:games@ellpeck.de">games@ellpeck.de</a>.</em>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in a new issue