m0x.it/templates/404.html

28 lines
730 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>m0x.it // 404</title>
<link rel="icon" type="image/svg+xml" href="{{ url_for('static', filename='image/favicon.svg') }}">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
margin: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #0d1117;
color: #8b949e;
font-family: ui-monospace, "SF Mono", Consolas, monospace;
}
h1 { color: #f85149; font-size: 2rem; margin-bottom: 0.5rem; }
</style>
</head>
<body>
<h1>404</h1>
<p>Dieser Link existiert nicht (mehr).</p>
</body>
</html>