-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
143 lines (114 loc) · 4.26 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
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
<!DOCTYPE html>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
<meta name="description" content="本博客使用用“保持署名—非商用”创意共享4.0许可证,转载只要保持原作者署名和非商用。">
<meta name="keywords" content="blog">
<link rel="alternate" href="/blog/atom.xml" title="Lishude's Web Note" type="application/atom+xml">
<meta name="theme-color" content="#5badf0">
<title>Lishude's Web Note</title>
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<link rel="shortcut icon" href="/blog/favicon.png">
<link rel="stylesheet" href="/blog/css/style.css">
<nav class="main-nav">
<a href="/blog/about/">About</a>
<a href="/blog/archives/">Archives</a>
<a class="cta" href="/atom.xml" data-no-instant>Subscribe</a>
</nav>
<section id="wrapper">
<div class="profile">
<section id="wrapper">
<header id="header">
<a href="/blog/about/">
<img id="avatar" class="2x" src="/images/avatar.png">
</a>
<h1>Lishude's Web Note</h1>
<h2>Node.js/Blockchain/Go</h2>
</header>
</section>
</div>
<ul id="post-list">
<li>
<aside class="dates">Sep 22 2020</aside>
<a href="/blog/2020/09/22/linux/p99延迟是什么/">p99延迟是什么?</a>
<h2></h2>
</li>
<li>
<aside class="dates">Sep 22 2020</aside>
<a href="/blog/2020/09/22/rust/Rust-Iterator-迭代器/">Rust Iterator 迭代器</a>
<h2></h2>
</li>
<li>
<aside class="dates">Sep 22 2020</aside>
<a href="/blog/2020/09/22/rust/Rust-中的-From-和-Into-trait/">Rust 中的 From 和 Into trait</a>
<h2></h2>
</li>
<li>
<aside class="dates">Sep 22 2020</aside>
<a href="/blog/2020/09/22/nodejs/GET-请求可不可以附带-body?/">GET 请求可不可以附带 body?</a>
<h2></h2>
</li>
<li>
<aside class="dates">Sep 22 2020</aside>
<a href="/blog/2020/09/22/blockchain/solidity-重入攻击和预防/">solidity 重入攻击和预防</a>
<h2></h2>
</li>
</ul>
<nav id="post-nav">
<span class="prev">
</span>
<span class="next">
<a href="/blog/page/2/">
Older posts<span class="arrow"> →</span>
</a>
</span>
</nav>
<footer id="footer">
<div id="social">
<p class="small">© Copyright 2020
<a href="/blog/"> islishude </a>/
<a href="https://hexo.io"> Hexo </a>/
<a href="https://github.com/caisiduo/hexo-theme-lightime"> Lightime</a>
</p>
</div>
</footer>
</section>
<script src="//cdnjs.loli.net/ajax/libs/instantclick/3.0.1/instantclick.min.js" data-no-instant></script>
<script data-no-instant>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-XXXXXXXX-Y', 'auto');
ga('send', 'pageview');
InstantClick.on('change', function() {
ga('send', 'pageview', location.pathname + location.search);
});
InstantClick.init('mousedown');
</script>
<script>
// To make images retina, add a class "2x" to the img element
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()) {
var suffix = document.getElementsByClassName('2x')[0].getAttribute('src');
suffix = suffix.replace('.png','@2x.png');
suffix = suffix.replace('.jpg','@2x.jpg');
document.getElementsByClassName('2x')[0].setAttribute('src',suffix);
};
</script>