-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (62 loc) · 2.05 KB
/
index.html
File metadata and controls
74 lines (62 loc) · 2.05 KB
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 charset="utf-8">
<!-- responsive -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>‎</title>
<!-- favicon -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<!-- url fixing -->
<script>
if (location.pathname.slice(-1) !== '/') {
location.href = location.origin + location.pathname.replace(/\/index\.html?$/, '') +
'/' + location.search + location.hash;
}
</script>
<!-- import vendor styles -->
<link rel="stylesheet" href="vendor/zenburn.css">
<link rel="stylesheet" href="vendor/blog.css">
</head>
<body>
<a target="_blank" href="https://github.com/fritx/blog">
<img class="fork-me" src="p/fork.png">
</a>
<!-- settle contents -->
<div class="contents" id="contents">
<div class="sidebar">
<div class="sidebar-inner">
<div class="sidebar-page" id="sidebar-page"></div>
</div>
</div>
<div class="main" id="main">
<div class="main-inner">
<div class="main-page" id="main-page"></div>
<!-- comment system -->
<div id="comment-system"> </div>
</div>
</div>
</div>
<!-- fill the img in shared links -->
<img class="img-holder" id="img-holder" src="p/avatar.jpg">
<!-- import vendor scripts -->
<script src="vendor/pace-1.2.4.min.js"></script>
<script src="vendor/lodash-4.17.21.min.js"></script>
<script src="vendor/jquery-1.11.1.min.js"></script>
<script src="vendor/marked-0.3.2.min.js"></script>
<script src="vendor/highlight.pack.js"></script>
<script src="vendor/blog.js"></script>
<!-- import baidu stats -->
<!-- 注意“启用单页应用数据统计” 管理后台 > 使用设置 > 规则设置 > 选中某个站点 -> 单页设置 -->
<!-- https://tongji.baidu.com/web/help/article?id=324&type=0 -->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "//hm.baidu.com/hm.js?025c58501ef381a39ac19553801cd6d5";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</body>
</html>