-
Notifications
You must be signed in to change notification settings - Fork 910
Expand file tree
/
Copy pathdefault.html
More file actions
executable file
·48 lines (44 loc) · 1.95 KB
/
default.html
File metadata and controls
executable file
·48 lines (44 loc) · 1.95 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
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<!--
* Author: BeiYuu
-->
<meta charset="utf-8" />
<title>{% if page.title %}{{ page.title }} | {% endif %}{{ site.title }}</title>
<meta name="author" content="Yanglichuan" />
<meta name="renderer" content="webkit">
<meta name="description" content="BeiYuu'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="/">BeiYuu</a>
<a class="home-follow" href="#" title="Contact Me">+</a>
</div>
<div class="home-contact">
<a href="http://weibo.com/beiyuu/" target="_blank" style="margin-left:-5px;"><img src="http://www.weibo.com/favicon.ico" alt="" width="25"/></a>
<a href="http://www.douban.com/people/beiyuu/" target="_blank" style="text-align:center;"><img src="http://www.douban.com/favicon.ico" alt="" width="22"/></a>
<a href="http://instagram.com/beiyuu/" target="_blank" style="text-align:right"><img src="http://d36xtkk24g8jdx.cloudfront.net/bluebar/00c6602/images/ico/favicon.ico" alt="" width="22"/></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>