-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
170 lines (105 loc) · 3.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
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
<!DOCTYPE html>
<html class="light page-home">
<head>
<meta charset="utf-8">
<title>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/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-home text-center">
<a class="avatar" href="/">
<img src="/images/logo.jpg" alt="" />
</a>
<h1 class="name" style="font-family: calligraffittiregular">
mczy
</h1>
<div class="slogan">
Empty Express Follow
</div>
<hr>
<ul class="text-center nav">
<li class="item">
<a href="/archives">Blog</a>
<span>|</span>
</li>
<li class="item">
<a href="https://github.com/mczy" rel="noopener noreferrer" target="_blank">Github</a>
<span>|</span>
</li>
</ul>
</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>