-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdefault.hbs
62 lines (50 loc) · 1.78 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
<!doctype html>
<html>
<head>
<title>{{meta_title}}</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="{{asset "fonts/font-awesome/css/font-awesome.min.css"}}">
<link href='//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="{{asset "css/pure.min.css"}}">
<link rel="stylesheet" href="{{asset "css/screen.css"}}">
{{ghost_head}}
</head>
<body>
<div id="sheet-layer-bottom" {{#if @blog.cover_image}}style="background-image: url({{@blog.cover_image}})"{{/if}}>
<header>
<div id="sheet-header-content">
<div class="pure-g-r">
<div class="pure-u-1-2">
<a class="sheet-title" href="{{@blog.url}}"><h1 class="sheet-header-title">{{@blog.title}}</h1></a>
</div>
<div class="pure-u-1-2">
<h1 class="sheet-header-secondary"></h1>
</div>
</div>
</div>
</header>
</div>
<div id="sheet-layer-top">
<div class="sheet-page-content">
{{{body}}}
</div>
<footer class="sheet-footer">
<div class="sheet-footer-content">
<div class="pure-g-r">
<div class="pure-u-1-2 sheet-copyright">
© <time datetime="{{date format='YYYY'}}">{{date format="YYYY"}}</time> <a href="{{@blog.url}}">{{@blog.title}}</a>
</div>
<div class="pure-u-1-2 sheet-footer-secondary">
</div>
</div>
</div>
</footer>
</div>
{{ghost_foot}}
<script src="{{asset "js/main.js"}}"></script>
</body>
</html>