-
Notifications
You must be signed in to change notification settings - Fork 77
/
gopher.html
68 lines (62 loc) · 1.75 KB
/
gopher.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
<html>
<head>
<title>SAE Gopher代理服务</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' />
<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>这是由电脑博物馆 DNBWG.com提供的网页版Gopher浏览服务器,架设在新浪SAE上</p>
<p>如果您的浏览器不能自动跳转,请点击<a href="http://gopher.applinzi.com">Gopher</a>
</p>
<p>由于微信会限制直接打开新浪SAE页面,请使用右上角菜单[...]在浏览器中打开此页面</p>
</div>
</body>
<script>
var isWeixin = function () {
var ua = navigator.userAgent.toLowerCase();
return ua.match(/MicroMessenger/i) == "micromessenger";
};
window.onload = function () {
if (!isWeixin()) {
window.location = "https://gopher.applinzi.com";
}
};
</script>
</html>