forked from pengan1987/famicn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
73 lines (68 loc) · 1.83 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<html>
<head>
<title>
404 - 找不到文件或目录
</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/reset.min.css" />
<link rel="stylesheet" href="https://dnbwg.oss-cn-hongkong.aliyuncs.com/base.css" />
<meta charset="UTF-8" />
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' />
<script type="application/javascript">
var recover = [
];
var newUrl = null;
for (var i = 0; i < recover.length; i++) {
if (window.location.href.indexOf(recover[i].from) != -1) {
newUrl = recover[i].to;
}
}
if (newUrl && newUrl.length > 0) {
window.location.href = newUrl;
}
</script>
<style type="text/css">
body {
background-color: #f5f5dc;
}
.text-center {
text-align: center;
}
#mainContent p {
margin-top: 8px;
margin-bottom: 8px;
}
</style>
</head>
<body>
<nav style="position: relative; z-index: 2; width:100%">
<ul>
<li>
<a href="index.html">首页</a>
</li>
<li>
<a href="console_list.html">红白机</a>
</li>
<li>
<a href="console_list.html?menu=genesis.json">世嘉机</a>
</li>
<li>
<a href="console_list.html?menu=learn.json">学习机</a>
</li>
<li>
<a href="http://www.compumuseum.com">电脑</a>
</li>
<li>
<a href="https://zhuanlan.zhihu.com/retrocomputing">知乎专栏</a>
</li>
<li>
<a href="https://github.com/pengan1987/famicn">Github</a>
</li>
</ul>
</nav>
<div id="mainContent">
<p class="text-center"><img src="https://dnbwg.oss-cn-hongkong.aliyuncs.com/404.jpg" /></p>
<p class="text-center">错误404 - 找不到文件或目录,一定是神偷卡门偷走了它!</p>
<p class="text-center">去 <a id="recover-link" href="http://www.famicn.com">网页里的电脑博物馆</a> 找找看</p>
</div>
</body>
</html>