generated from yaoyao-liu/minimal-light
-
Notifications
You must be signed in to change notification settings - Fork 63
/
404.html
55 lines (40 loc) · 1.43 KB
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE HTML>
<html>
<head>
<title>404 Not Found</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="icon" media="(prefers-color-scheme:dark)" href="{{ site.favicon_dark }}" type="image/png" />
<link rel="icon" media="(prefers-color-scheme:light)" href="{{ site.favicon }}" type="image/png" />
<script src="./assets/js/favicon-switcher.js" type="application/javascript"></script>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body class="is-preload">
<!-- Header -->
<header id="header">
</header>
<!-- Main -->
<div class="wrapper">
<header>
<center>
<br>
<h1><strong>404 Not Found</strong><br></h1>
</center>
</header>
<section>
<br>
<h3>This is not the web page you are looking for.</h3>
<br>
<h3>You'll be redirected to the homepage in 5 seconds.</h3>
<script language="javascript">
window.setTimeout("window.location.href='/'", 5000);
</script>
</section>
</div>
<!-- Footer -->
<footer id="footer">
</footer>
<!-- Scripts -->
<script src="javascripts/scale.fix.js"></script>
</body>
</html>