-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (40 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>blog of qyvlik</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="stylesheets/normalize.css" media="screen">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/github-light.css" media="screen">
</head>
<body>
<section class="page-header">
<h1 class="project-name">blog of qyvlik</h1>
<h2 class="project-tagline"><a href="/"> qyvlik 的 github 博客</a></h2>
</section>
<section class="main-content">
<p id="postContent"></p>
<footer class="site-footer">
<span class="site-footer-credits">本作品由<a href="https://github.com/qyvlik">qyvlik</a>创作,采用<a href="https://creativecommons.org/licenses/by-nc-sa/3.0/cn/" target="_bank">知识共享署名-非商业性使用-相同方式共享 3.0 中国大陆许可协议进行许可</a>。 凡是转载的文章,翻译的文章,或者由其他作者投稿的文章,版权归原作者所有。</span>
</footer>
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/1.7.1/showdown.min.js"></script>
<script src="javascripts/main.js"></script>
<script>
window.onload = function() {
if (window.location.search === '') {
lostPostList(function(){
showPostList("postContent");
});
} else {
lostPostList(function(){
var p = getQueryString("p");
loadPostByP("postContent", p);
});
}
}
</script>
</body>
</html>