-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (58 loc) · 1.8 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- responsive -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>followfork' Blog</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/hljs-railscasts.css">
<link rel="stylesheet" href="vendor/blog.css">
</head>
<body>
<!-- <a target="_blank" href="https://github.com/followfork/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>
<!-- disqus container -->
<!-- <div id="disqus_thread"></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/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 -->
<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>