-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
75 lines (67 loc) · 2.39 KB
/
index.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
<!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">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<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="home" style="display: none;">
<div id="container">
<div id="blog_title"></div>
<div id="index">
<image id="wait" src="wait.gif" class="aligncenter"></image>
<ul id="post_list"></ul>
<div class="clearfix"></div>
</div>
</div>
</div>
<div id="page" style="display: none;">
<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>
<div id="footer">
</div>
</body>
<script type="text/javascript">
var id = parseInt(loadPageVar("p"));
if (id) {
hideElement("home");
showElement("page");
gotoPage(id);
} else {
hideElement("page");
showElement("home");
gotoHome();
}
</script>
</html>