forked from pengan1987/computer-museum-dnbwg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
94 lines (89 loc) · 4.03 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<html>
<head>
<title>
404 - 找不到文件或目录
</title>
<link rel="stylesheet" href="https://lib.baomitu.com/meyer-reset/2.0/reset.min.css" />
<link rel="stylesheet" href="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 = [
{ "from": "subor/suborv6.html", "to": "http://www.compumuseum.com/emularity.html?machine=subor486" },
{ "from": "mame/ceci.html", "to": "http://www.compumuseum.com/emularity.html?machine=ceci" },
{ "from": "mame/cecidisk.html", "to": "http://www.compumuseum.com/emularity.html?machine=cecidisk" },
{ "from": "mame/maciici.html", "to": "http://www.compumuseum.com/emularity.html?machine=maciici" },
{ "from": "mame/maciicichs.html", "to": "http://www.compumuseum.com/emularity.html?machine=maciicichs" },
{ "from": "pce-mac/index.html", "to": "http://www.compumuseum.com/emularity.html?machine=macplus" },
{ "from": "pce-mac-chs/index.html", "to": "http://www.compumuseum.com/emularity.html?machine=macpluschs" },
{ "from": "emdosbox/pal.html", "to": "http://www.compumuseum.com/emularity.html?machine=xianjianpal" },
{ "from": "emdosbox/jinyong.html", "to": "http://www.compumuseum.com/emularity.html?machine=jinyong" },
{ "from": "emdosbox/doom.html", "to": "http://www.compumuseum.com/emularity.html?machine=doom" },
{ "from": "emdosbox/dosbox.html", "to": "http://www.compumuseum.com/emularity.html?machine=ucdos" },
{ "from": "emdosbox/executor.html", "to": "http://www.compumuseum.com/emularity.html?machine=executor" },
{ "from": "atarist-emutos/index.html", "to": "http://www.compumuseum.com/emularity.html?machine=emutos" },
{ "from": "atarist-pce-mono/index.html", "to": "http://www.compumuseum.com/emularity.html?machine=ataristmono" },
{ "from": "atarist-pcejs/index.html", "to": "http://www.compumuseum.com/emularity.html?machine=atarist" },
{ "from": "win95.html", "to": "http://www.compumuseum.com/v86.html?machine=netscape" },
{ "from": "apple2js.html", "to": "http://www.compumuseum.com/player.html?machine=apple2" },
{ "from": "apple2jse.html", "to": "http://www.compumuseum.com/player.html?machine=apple2e" },
{ "from": "jswqx", "to": "http://www.compumuseum.com/player.html?machine=ggvnc1020" },
{ "from": "jsspeccy", "to": "http://www.compumuseum.com/player.html?machine=zxspectrum" },
{ "from": "elkjs", "to": "http://www.compumuseum.com/player.html?machine=acornelectron" },
{ "from": "pcjs/example4.html", "to": "http://www.compumuseum.com/player.html?machine=pc5150cga" },
{ "from": "pcjs/example3a.html", "to": "http://www.compumuseum.com/player.html?machine=pc5150mda" },
{ "from": "jsbeeb", "to": "http://www.compumuseum.com/player.html?machine=bbcmicro" },
];
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="http://www.famicn.com">游戏机</a>
</li>
<li>
<a href="https://pengan1987.github.io/">专栏</a>
</li>
<li>
<a href="https://github.com/pengan1987/computer-museum-dnbwg">Github</a>
</li>
<li>
<a href="labs.html">实验室</a>
</li>
<li>
<a href="special.html">专题展览</a>
</li>
</ul>
</nav>
<div id="mainContent">
<p class="text-center"><img src="404.jpg" /></p>
<p class="text-center">错误404 - 找不到文件或目录,一定是神偷卡门偷走了它!</p>
<p class="text-center">去 <a id="recover-link" href="http://www.compumuseum.com">网页里的电脑博物馆</a> 找找看</p>
</div>
</body>
</html>