-
Notifications
You must be signed in to change notification settings - Fork 5
/
404.html
305 lines (240 loc) · 10.3 KB
/
404.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
<!-- layout/default.html -->
<!-- head.html -->
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<!-- 标签页标题 -->
<title>404 Error - Blog of 太极儒</title>
<meta name="author" content="Frank Song">
<!-- 定义description变量,如果有则用,没有则是正文,前150字 -->
<meta name="description" content=" ">
<meta name="baidu-site-verification" content="7O78rNJCOH" />
<meta name="360-site-verification" content="9ee6dda17557079b8855f9c8201b05bb" />
<meta name="msvalidate.01" content="408D13BCB6B6CE4973F6CD9E6A9E8195" />
<meta name="sogou_site_verification" content="CtgkJPDjga"/>
<meta name="chinaz-site-verification" content="081e7651-48c6-4c2f-a569-99321685eab1" />
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="wb:webmaster" content="051ef053540cbffd" />
<link rel="canonical" href="http://frank19900731.github.io/404.html">
<!-- 网站小图标 -->
<link href="/favicon.ico" rel="icon">
<!-- 网站样式文件 -->
<link href="/stylesheets/styles.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href="/atom.xml" rel="alternate" title="Blog of 太极儒" type="application/atom+xml">
<script src="/javascripts/modernizr.custom.js"></script>
<!-- jQuery -->
<!--script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script-->
<script src="/javascripts/jquery.min.js"></script>
<script>!window.jQuery && document.write(unescape('%3Cscript src="./javascripts/lib/jquery.min.js"%3E%3C/script%3E'))</script>
<!-- 其它js代码 -->
<script src="/javascripts/octopress.js" type="text/javascript"></script>
<script src="/javascripts/jquery.sidr.min.js"></script>
<script src="/javascripts/snowfall.jquery.min.js"></script>
<script src="/javascripts/ah-blue.js"></script>
<script type="text/javascript" src="/javascripts/fancybox/jquery.fancybox.pack.js"></script>
<link rel="stylesheet" type="text/css" href="/javascripts/fancybox/jquery.fancybox.css" media="screen" />
<link href="/stylesheets/component.css" rel="stylesheet" type="text/css">
<script type="text/javascript">
$(document).ready(function() {
// $(document).snowfall({image :"/images/flake.png",
// minSize: 20, maxSize:40,
// flakeCount: 20, maxSpeed: 3});
if ($(".img-up")) {
$(".img-up").fancybox();
}
if ($(".imgleft")) {
$(".imgleft").parent().parent().css("text-align", "left");
}
if ($(".imgright")) {
$(".imgright").parent().parent().css("text-align", "right");
}
if ($(".imgcenter")) {
$(".imgcenter").parent().parent().css("text-align", "center");
}
if ($(".imgleft-no-shadow")) {
$(".imgleft-no-shadow").parent().parent().css("text-align", "left");
}
if ($(".imgright-no-shadow")) {
$(".imgright-no-shadow").parent().parent().css("text-align", "right");
}
if ($(".imgcenter-no-shadow")) {
$(".imgcenter-no-shadow").parent().parent().css("text-align", "center");
}
if ($(".mod_lost_child_little")) {
$(".mod_lost_child_little").css("width", "100%");
}
var isMobile = {
Android: function() {
return navigator.userAgent.match(/Android/i) ? true : false;
},
BlackBerry: function() {
return navigator.userAgent.match(/BlackBerry/i) ? true : false;
},
iOS: function() {
return navigator.userAgent.match(/iPhone|iPad|iPod/i) ? true : false;
},
Windows: function() {
return navigator.userAgent.match(/IEMobile/i) ? true : false;
},
any: function() {
return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Windows());
}
};
if( isMobile.any() )
{
$('.wx-entrance').show();
}
});
</script>
<!-- custom/head.html -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
jax: ["input/TeX", "output/HTML-CSS"],
tex2jax: {
inlineMath: [ ['$', '$'], ["\\(", "\\)"] ],
displayMath: [ ['$$', '$$'], ["\\[", "\\]"] ],
processEscapes: true,
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
}
//,
//displayAlign: "left",
//displayIndent: "2em"
});
function addBlankTargetForLinks () {
$('a[href^="http"]').each(function(){
$(this).attr('target', '_blank');
});
}
$(document).bind('DOMNodeInserted', function(event) {
addBlankTargetForLinks();
});
</script>
<script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script>
<!-- google_analytics.html -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-51950124-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<!-- header.html -->
<!-- custom/header.html -->
<!-- 搜索和菜单导航 -->
<!--
<div class="aux-container">
<a id="nav-toggle" href="#sidr"></a>
<a id="search-toggle"></a>
</div> -->
<div id="dl-menu" class="dl-menuwrapper">
<button>Open Menu</button>
<ul class="dl-menu">
<li><a href="/">Home</a></li>
<li><a href="/archives/">Archives (61)</a></li>
<li>
<a href="#">Categories (7)</a>
<ul class="dl-submenu">
<li class="dl-back"><a href="#">Back</a></li>
<li><a href="/blog/categories">All Categories (7)</a>
<li style="color: #CCCCCC; line-height: 150%"> Top 5</li>
<li><a href='/category/Mac 使用'>Mac 使用 (30)</a></li><li><a href='/category/面试求职'>面试求职 (13)</a></li><li><a href='/category/工作效率'>工作效率 (9)</a></li><li><a href='/category/网页开发'>网页开发 (4)</a></li><li><a href='/category/编程学习'>编程学习 (2)</a></li>
</ul>
</li>
<li><a href="/blog/tags">All Tags (52)</a>
<li>
<a href="#">Features</a>
<ul class="dl-submenu">
<li class="dl-back"><a href="#">Back</a></li>
<li><a href="/booklist">Book List</a></li>
<li><a href="/movielist">Movie List</a></li>
<li><a href="/activities">Activities</a></li>
<li><a href="/softwares">Softwares</a></li>
<li><a href="/towrite">Things to Write</a></li>
<li><a href="/weibo">Weibo Favorites</a></li>
</ul>
</li>
<li><a href="/about">About</a></li>
</ul>
</div><!-- /dl-menuwrapper -->
<div class="aux-container">
</div>
<div style="height: 30px;"></div>
<div style="background-color: rgba(255, 255, 255, 0.3); padding: 25px 25px 25px 25px; border-radius: 20px; width: 900px; margin: auto;">
<div class="iframe-wrapper">
<iframe id="frame-404" scrolling="no" frameborder="0" src="http://yibo.iyiyun.com/Home/Distribute/ad404/key/15510" style="display:block;">
</iframe>
</div>
</div>
<!-- footer.html -->
<!-- custom/footer.html -->
<!-- 页脚 -->
<!-- after_footer.html -->
<!-- custom/after_footer.html -->
<!-- 加入评论 -->
<!-- 多说公共JS代码 start (一个网页只需插入一次) -->
<script type="text/javascript">
var duoshuoQuery = {short_name:"frank19900731-blog"};
(function() {
var ds = document.createElement('script');
ds.type = 'text/javascript';ds.async = true;
ds.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//static.duoshuo.com/embed.js';
ds.charset = 'UTF-8';
(document.getElementsByTagName('head')[0]
|| document.getElementsByTagName('body')[0]).appendChild(ds);
})();
</script>
<!-- 多说公共JS代码 end -->
<!--
-->
<script src="/javascripts/jquery.dlmenu.js"></script>
<script type="text/javascript">
$(function() {
$('#dl-menu').dlmenu();
});
function onLoadSet() {
}
</script>
<a id="gotop" href="#">
<span>▲</span>
</a>
<div id="float-index">
</div>
<script type="text/javascript">
$(function(){
$(window).scroll(function(){ //只要窗口滚动,就触发下面代码
var scrollt = document.documentElement.scrollTop + document.body.scrollTop; //获取滚动后的高度
if( scrollt >300 ){ //判断滚动后高度超过200px,就显示
$("#gotop").fadeIn(400); //淡出
}else{
$("#gotop").stop().fadeOut(400); //如果返回或者没有超过,就淡入.必须加上stop()停止之前动画,否则会出现闪动
}
if(scrollt > 1300) {
$("#float-index").fadeIn(400);
} else {
$("#float-index").stop().fadeOut(10);
}
});
$("#gotop").click(function(){ //当点击标签的时候,使用animate在200毫秒的时间内,滚到顶部
$("html,body").animate({scrollTop:"0px"},200);
});
if ($("#markdown-toc").length > 0) {
$("#markdown-toc").clone(true).appendTo("#float-index");
} else {
$("#float-index").remove();
}
});
</script>
<script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");document.write(unescape("%3Cspan id='cnzz_stat_icon_1253436508'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "s6.cnzz.com/z_stat.php%3Fid%3D1253436508%26show%3Dpic' type='text/javascript'%3E%3C/script%3E"));</script>
</body>
</html>