-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
193 lines (119 loc) · 3.61 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
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
<!DOCTYPE html>
<html class="light page-archives">
<head>
<meta charset="utf-8">
<title>Archives | mczy</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="keywords" content="mczy,前端,blockchain,用户体验,设计,frontend,design,nodejs,android,ios,Javascript" />
<meta name="description" content="mczy blog">
<meta property="og:type" content="website">
<meta property="og:title" content="mczy">
<meta property="og:url" content="http://mczy.github.io/archives/index.html">
<meta property="og:site_name" content="mczy">
<meta property="og:description" content="mczy blog">
<meta property="og:locale" content="zh-CN">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="mczy">
<meta name="twitter:description" content="mczy blog">
<link rel="icon" href="/favicon.ico">
<link href="/css/styles.css?v=c114cbe6" rel="stylesheet">
<link rel="stylesheet" href="/css/personal-style.css">
</head>
<body>
<div class="content content-archive">
<div class="page-header">
<div class="breadcrumb">
<div class="location">博客</div>
<i class="icon-location"></i>
</div>
<div class="box-blog-info">
<a class="avatar" href="/">
<img src="/images/logo.jpg" alt="" />
</a>
<div class="info">
<h3 class="name" style="font-family: calligraffittiregular">
mczy
</h3>
<div class="slogan">
Empty Express Follow
</div>
</div>
</div>
</div>
<div class="post-list-box archive-body">
<ul class="list-post"> <li class="item-year item item-title item-title-2">
<a href="/archives/2017" class="text-year">
2017
<i class="icon-ji"></i>
</a>
</li>
<li class="item-post item">
<span class="post-date">08-29</span>
<a class="post-title" href="/2017/08/29/hello-world/">Hello World开宗明义</a>
</li>
</ul>
</div>
<div class="archive-footer">
</div>
</div>
<div class="modal" id="modal">
<span id="cover" class="cover hide"></span>
<div id="modal-dialog" class="modal-dialog hide-dialog">
<div class="modal-header">
<span id="close" class="btn-close">关闭</span>
</div>
<hr>
<div class="modal-body">
<ul class="list-toolbox">
<li class="item-toolbox">
<a
class="CIRCLE"
href="/archives/"
rel="noopener noreferrer"
target="_self"
>
博客
</a>
</li>
<li class="item-toolbox">
<a
class="CIRCLE"
href="/about/"
rel="noopener noreferrer"
target="_self"
>
关于
</a>
</li>
</ul>
</div>
</div>
</div>
<script type="text/javascript">
function loadScript(url, callback) {
var script = document.createElement('script')
script.type = 'text/javascript';
if (script.readyState) { //IE
script.onreadystatechange = function() {
if (script.readyState == 'loaded' ||
script.readyState == 'complete') {
script.onreadystatechange = null;
callback();
}
};
} else { //Others
script.onload = function() {
callback();
};
}
script.src = url;
document.getElementsByTagName('head')[0].appendChild(script);
}
window.onload = function() {
loadScript('/js/bundle.js?235683', function() {
// load success
});
}
</script>
</body>
</html>