-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.hbs
executable file
·63 lines (48 loc) · 2.37 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
<!DOCTYPE html>
<html>
<head>
{{! Document Settings }}
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
{{! Page Meta }}
<title>{{meta_title}}</title>
<link rel="shortcut icon" href="{{asset "/favicon.ico"}}">
<meta name="description" content="{{meta_description}}" />
{{! Styles }}
<link rel="stylesheet" type="text/css" href="{{asset "css/ball-clip-rotate.min.css"}}" />
<link href='https://fonts.googleapis.com/css?family=Lato:400,300,700,900|Noto+Serif:400,700,400italic,700italic&subset=latin-ext,latin' rel='stylesheet' type='text/css'>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="{{asset "css/style.css"}}" />
{{! jQuery }}
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="{{asset "js/modernizr.custom.js"}}"></script>
<script type="text/javascript" src="{{asset "js/other.js"}}"></script>
{{! Responsive Meta Tags }}
<meta name="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
{{ghost_head}}
</head>
<body class="{{body_class}}">
<div class="se-pre-con"><div class="la-ball-clip-rotate la-dark la-2x"><div></div></div></div>
{{{body}}}
{{ghost_foot}}
{{! Disqus comments }}
<script type="text/javascript">
{{> custom/disqus this}}
/* * * 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>
{{! Other scripts }}
<script type="text/javascript" src="{{asset "js/jquery.sticky-kit.js"}}"></script>
<script type="text/javascript" src="{{asset "js/carousel.js"}}"></script>
<script type="text/javascript" src="{{asset "js/jquery.fitvids.js"}}"></script>
<script type="text/javascript" src="{{asset "js/index.js"}}"></script>
<script type="text/javascript" src="{{asset "js/menu.js"}}"></script>
</body>
</html>