-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathdefault.hbs
32 lines (32 loc) · 1.57 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<title>{{meta_title}}</title>
<meta name="HandheldFriendly" content="True"/>
<meta name="viewport" content="minimal-ui, width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="format-detection" content="telphone=no, email=no"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<link rel="apple-touch-icon" href="{{@blog.logo}}"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
{{> config}}
<link rel="shortcut icon" href="{{asset "favicon.ico"}}">
<link rel="stylesheet" type="text/css" href="{{asset "css/bootstrap.min.css"}}"/>
<link rel="stylesheet" type="text/css" href="{{asset "css/default.css"}}"/>
<link rel="stylesheet" type="text/css" href="{{asset "css/nprogress.css"}}"/>
{{ghost_head}}
</head>
<body class="{{body_class}}">
{{{body}}}
{{ghost_foot}}
<script type="text/javascript" src="{{asset "js/jquery.min.js"}}"></script>
<script type="text/javascript" src="{{asset "js/bootstrap.min.js"}}"></script>
<script type="text/javascript" src="{{asset "js/nprogress.js"}}"></script>
<script type="text/javascript" src="{{asset "js/headroom.min.js"}}"></script>
<script type="text/javascript" src="{{asset "js/prism.js"}}"></script>
<script type="text/javascript" src="{{asset "js/ghostsearch.js"}}"></script>
<script type="text/javascript" src="{{asset "js/default.js"}}"></script>
</body>
</html>