-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.hbs
executable file
·87 lines (73 loc) · 3.56 KB
/
default.hbs
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
<!DOCTYPE html>
<html>
<head>
{{! Document Settings }}
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
{{! Page Meta }}
<title>{{meta_title}} | {{meta_description}}</title>
<meta itemprop="description" name="description" content="{{meta_description}}" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="{{asset "favicon.ico"}}">
{{! Styles'n'Scripts }}
<link rel="stylesheet" href="{{asset "css/animate.css"}}">
<link rel="stylesheet" href="{{asset "css/github.css"}}">
<link rel="stylesheet" href="{{asset "css/normalize.css"}}">
<link rel="stylesheet" href="{{asset "css/main.css"}}" />
<link rel="stylesheet" href="{{asset "css/wstyle.css"}}" />
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400' rel='stylesheet' type='text/css'>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<style type="text/css">
.headroom {position: fixed;top: 0;left: 0;right: 0;transition: all .2s ease-in-out;}
.headroom--unpinned {top: -100px;}
.headroom--pinned {top: 0;}
</style>
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body itemscope itemtype="http://schema.org/Blog" class="{{body_class}}">
{{> header}}
{{! Everything else gets inserted here }}
{{{body}}}
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
<footer class="footer">
<p> Powered by <a href="http://ghost.com" rel="nofollow">Ghost</a></p>
</footer>
{{! The main JavaScript file for Kular }}
<script src="{{asset "js/jquery-2.0.3.min.js"}}"></script>
<script src="{{asset "js/modernizr.js"}}"></script>
<script src="{{asset "js/selectivizr-min.js"}}"></script>
<script src="{{asset "js/html5.js"}}"></script>
<script src="{{asset "js/highlight.js"}}"></script>
<script src="{{asset "js/imagesloaded.js"}}"></script>
<script src="{{asset "js/masonry.js"}}"></script>
<script src="{{asset "js/main.js"}}"></script>
<script src="{{asset "js/wjquery-2.0.3.min.js"}}"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".side ul li").hover(function(){
$(this).find(".sidebox").stop().animate({"width":"124px"},200).css({"opacity":"1","filter":"Alpha(opacity=100)","background":"#1d81f2"})
},function(){
$(this).find(".sidebox").stop().animate({"width":"54px"},200).css({"opacity":"0.8","filter":"Alpha(opacity=80)","background":"#000"})
});
});
//回到顶部
function goTop(){
$('html,body').animate({'scrollTop':0},600);
}
</script>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'angelbeat'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = '//' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
</body>
</html>