-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticles.html
144 lines (117 loc) · 5.54 KB
/
articles.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>CloudRed | Blog</title>
<link href="static/images/icon.png" rel="shortcut icon"/>
<link href="static/css/base.lib.min.css" rel="stylesheet" media="screen">
<link href="static/css/layout.min.css" rel="stylesheet" media="screen">
<!-- <link id="prettify-style" href="static/css/desert-cmd.css" type="text/css" rel="stylesheet"> -->
<link id="prettify-style" href="static/css/prettify-cmd.css" type="text/css" rel="stylesheet">
<link href="static/css/base.css" type="text/css" rel="stylesheet" />
<link rel="stylesheet" href="static/plugs/mCustomScrollbar/jquery.mCustomScrollbar.min.css">
</head>
<body>
<!-- HEADER -->
<div class="header">
<h1><a href="https://cloudred.github.io">我的首页啊</a></h1>
</div>
<!-- MAIN CONTENT -->
<div class="content">
<div class="scroll">
<div id="wrap">
<div class="con-item">
<h2><a href="javascript:;" onclick="showPage('{{path}}');return false;">{{title}}</a></h2>
<ul>
<li><p><i class="icon-calendar"></i> {{date}}</p></li>
<li><p><i class="icon-tags"></i> tags</p></li>
</ul>
<p>{{brief}}</p>
<!-- Disqus 获取评论数 -->
<!-- <p><span class='disqus-comment-count' data-disqus-url="https://cloudred.github.io{{path}}#disqus_thread">0 Comments</span></p> -->
<hr />
</div>
</div>
<div id="page" class="animate">
<div class="page-inner">
<div class="p-header">
<div class="ph-inner">
<div class="page-close">
<!-- <a class="mybtn animate" href="javascript:;" >BACK</a> -->
<a class="mybtn animate" href="javascript:;" ><i class="icon-angle-left"></i></a>
</div>
<div class="toc-btn">
<a id="show-toc-btn" class="mybtn toc-close animate" href="javascript:;"><i class="icon-list"></i></a>
</div>
<div class="animate toc-bar">
<div class="toc-title">
Content
</div>
<div id="toc-content" class="toc-content" data-display='0'>
</div>
</div>
</div>
</div>
<div id="page-context"></div>
</div>
</div>
</div>
<div class="tool-bar">
<ul>
<li><a href="javascript:;" id="top-btn">top</a></li>
</ul>
</div>
</div>
<!-- FOOTER -->
<div class="footer">
<a id="more" href="javascript:;">more</a>
<hr />
<a href="#">© CloudRed</a>
</div>
<div id="aaa"></div>
<!--Google CDN jQuery with fallback to local -->
<!-- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="static/js/jquery-1.11.0.min.js"><\/script>')</script> -->
<script type="text/javascript" src="static/js/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="static/js/GeneralTools.js"></script>
<script type="text/javascript" src="pages/data.js"></script>
<script type="text/javascript" src="static/js/Generator.js"></script>
<!-- plugins -->
<script src="static/plugs/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="static/plugs/mCustomScrollbar/jquery.mousewheel.min.js"></script>
<script>
// Seting Scrollbar object
(function($){
$(window).load(function(){
$("body").mCustomScrollbar({
// axis : 'xy',
// theme : 'minimal-dark',
theme : 'dark',
autoHideScrollbar : true,
scrollInertia: 200,
});
$("#page").mCustomScrollbar({
theme : 'dark',
// autoHideScrollbar : true,
scrollInertia: 800,
callbacks:{
whileScrolling:function(){
$('#aaa').css({"background":"red",'position':'fixed','top':'0','z-index':'99999',"height":"3px",'width': this.mcs.topPct.toFixed(4)+"%"})
},
}
});
});
})(jQuery);
</script>
<!-- <script>
// Load DISQUS object
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = '//cloudred.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript> -->
</body>
</html>