Files
YYeTsBot/yyetsweb/templates/404.html
Benny c44a20c64d Dev (#52)
update bunch of features
2021-08-15 12:29:49 +08:00

49 lines
1.2 KiB
HTML
Vendored

<!doctype html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Pacifico&display=swap" rel="stylesheet">
<link href="/css/normalize.min.css" rel="stylesheet">
<style>
h1 {
font-family: Pacifico, sans-serif;
font-size: 4em;
color: #3eb5f1;
margin: 0;
}
h2 {
font-weight: 300;
font-family: sans-serif;
}
.centered {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
#ferris {
width: 75%;
}
</style>
<meta charset="utf-8">
<title>人人影视下载分享 404</title>
</head>
<body>
<div class="centered">
<h1>404 Not Found</h1>
<h2>你访问的页面不存在,将会在三秒钟内跳转回首页哦!</h2>
<img id="ferris" alt="a sad crab is unable to unable to lasso a paper airplane. 404 not found."
src="img/404-wrangler-ferris.gif">
</div>
</body>
<script>
setTimeout(function () {
window.location.href = '/';
}, 3000);
</script>
</html>