-
Notifications
You must be signed in to change notification settings - Fork 25
/
default.hbs
executable file
·69 lines (51 loc) · 2.65 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
<!doctype html>
<html class="no-js">
<head>
{{! Document Settings }}
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
{{! Page Meta }}
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}" />
<meta name="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1, user-scalable=no">
<link rel="shortcut icon" href="{{asset "favicon.ico"}}">
{{! Styles'n'Scripts }}
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
{{! Include for changeable bootstrap theme }}
{{> bootstrap-theme }}
<link rel="stylesheet" type="text/css" href="{{asset "css/main.css"}}" />
<!-- Google Authorship and Publisher Markup -->
{{> google-authorship}}
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.2/modernizr.min.js"></script>
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body itemscope itemtype="http://schema.org/Blog">
<!--[if lt IE 10]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
{{! Navbar include }}
{{> navbar}}
{{! Everything else gets inserted here }}
{{{body}}}
{{! Footer include }}
{{> footer}}
{{!-- jQuery needs to come before `{{ghost_foot}}` so that jQuery can be used in code injection --}}
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
{{! The main JavaScript file for Casper }}
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script type="text/javascript" src="{{asset "js/headroom.min.js"}}"></script>
<script type="text/javascript" src="{{asset "js/imagesloaded.min.js"}}"></script>
<script type="text/javascript" src="{{asset "js/jquery.fluidbox.min.js"}}"></script>
<script type="text/javascript" src="{{asset "js/jquery.fitvids.js"}}"></script>
<script type="text/javascript" src="{{asset "js/infinitescroll.js"}}"></script>
<script type="text/javascript" src="{{asset "js/nanobar.min.js"}}"></script>
<script type="text/javascript" src="{{asset "js/main.js"}}"></script>
{{! Google analytics include }}
{{> google-analytics}}
</body>
</html>