-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (94 loc) · 4.22 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<title>yangjun blog</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="杨军的博客">
<meta name="author" content="杨军">
<!-- Le styles -->
<link href="http://lib.sinaapp.com/js/bootstrap/2.0.2/css/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<link href="http://lib.sinaapp.com/js/bootstrap/2.0.2/css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="skin.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="static/favicon.ico">
</head>
<body>
<script id="tpl-main" type="text/template">
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="brand" href="#">{{site_name}}</a>
<div class="nav-collapse">
<ul class="nav">
{{#navlist}}
<li><a href="{{link}}">{{text}}</a></li>
{{/navlist}}
</ul>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row-fluid">
<div class="span3">
<div class="well sidebar-nav">
</div>
</div>
<div class="span9">
<div class="row-fluid article-content">
</div>
</div>
</div>
<hr>
<footer>
<p>© {{copyright}} </p>
</footer>
</div><!--/.fluid-container-->
</script>
<script id="tpl-sidebar" type="text/template">
<ul class="nav nav-list">
{{#months}}
<li class="nav-header">{{month}}</li>
{{#articles}}
<li><a href="#!show/{{link}}">{{text}}</a></li>
{{/articles}}
{{/months}}
</ul>
</script>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'yangjun'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = '//' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
<div class="main-body">
</div>
<script src="http://cdnjs.cloudflare.com/ajax/libs/json2/20110223/json2.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.3.1/underscore-min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/backbone.js/0.9.1/backbone-min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/mustache.js/0.3.0/mustache.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.0.1/bootstrap.min.js"></script>
<script src="http://cachedcommons.org/cache/showdown/1.0.0/javascripts/showdown-min.js"></script>
<script src="main.js"></script>
</body>
</html>