forked from beiyuu/Github-Pages-Example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
executable file
·44 lines (39 loc) · 1.54 KB
/
default.html
File metadata and controls
executable file
·44 lines (39 loc) · 1.54 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>{% if page.title %}{{ page.title }} | {% endif %}{{ site.title }}</title>
<meta name="author" content="YangQian" />
<meta name="renderer" content="webkit">
<meta name="description" content="YangQian's Blog" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="/css/default.css" type="text/css" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="alternate" type="application/atom+xml" title="Recent Entries" href="{{ site.feed }}" />
<script src="/js/jquery-1.7.1.min.js" type="text/javascript"></script>
</head>
<body>
<div class="home-menu">
<div class="home-icon-con">
<a class="home-menu-icon" href="/blog">YQ36</a>
<a class="home-follow" href="#" title="Contact Me">+</a>
</div>
<div class="home-contact">
<a href="mailto:script36@126.com" target="_self" style="margin-left:-5px;"><img src="http://mail.126.com/favicon.ico" alt="" width="25"/></a>
</div>
</div>
{{ content }}
<script type="text/javascript">
$(function(){
$('.home-follow').click(function(e){
e.preventDefault();
if($('.home-contact').is(':visible')){
$('.home-contact').slideUp(100);
}else{
$('.home-contact').slideDown(100);
}
});
})
</script>
</body>
</html>