-
Notifications
You must be signed in to change notification settings - Fork 5
/
404.html
54 lines (51 loc) · 1.8 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
<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="Stylesheet" type="text/css" href="css/style.css">
<link rel="Stylesheet" type="text/css" href="css/tango.css">
<link rel="Stylesheet" type="text/css" href="css/github-markdown.css">
<title></title>
<script src="config.js"></script>
<script src="ajax.js"></script>
<script src="util.js"></script>
<script src="app.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-139883805-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-139883805-2');
</script>
</head>
<body>
<div id="header">
<div id="post-nav">
<a href="/">首页</a>
<a href="/about.html">关于</a>
<a href="/sitemap.html">所有文章</a>
</div>
</div>
<div id="container">
<div id="title"></div>
<div id="content" class="markdown-body">
<image id="wait" src="wait.gif" class="aligncenter"></image>
</div>
<div id="comment">
</div>
</div>
<div id="footer"></div>
</body>
<script type="text/javascript">
setTitle(config.blog_name);
setFooter();
var id = parseInt(location.pathname.substring(1));
if (id) {
gotoPage(id);
} else {
location.replace("/");
}
</script>
</html>