-
Notifications
You must be signed in to change notification settings - Fork 15
/
default-wide.hbs
47 lines (38 loc) · 1.52 KB
/
default-wide.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="{{meta_description}}" />
<title>{{meta_title}}</title>
<link href="{{asset "css/bootstrap.min.css"}}" rel="stylesheet">
<link href="{{asset "css/bootflat.min.css"}}" rel="stylesheet">
<link href="{{asset "css/octicons.css"}}" rel="stylesheet">
<link href="{{asset "css/app.css"}}" rel="stylesheet">
<link rel="shortcut icon" href="{{#if @blog.logo}}{{@blog.logo}}{{else}}{{asset "favicon.ico"}}{{/if}}">
{{ghost_head}}
</head>
<body>
<div id="wrap">
{{> header}}
{{> head-image}}
<div class="container">
<div class="row">
<div class="col-lg-12 centered">
{{{body}}}
</div>
</div>
</div>
</div>
<div id="footer">
{{> footer}}
</div>
{{ghost_foot}}
<script src="{{asset "js/icheck.min.js"}}"></script>
<script src="{{asset "js/jquery.fs.selecter.min.js"}}"></script>
<script src="{{asset "js/jquery.fs.stepper.min.js"}}"></script>
<script src="{{asset "js/bootstrap.min.js"}}"></script>
<script src="{{asset "js/ghost-blog.js"}}"></script>
</body>
</html>