forked from dominicbartl/phantom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.hbs
45 lines (34 loc) · 1.23 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
<!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" />
<meta name="google-site-verification" content="2sFNa3r5M51jSBOmqrR7s9kJ6ohxsR5CNOkp4I0a2ho" />
{{! Page Meta }}
<title>{{meta_title}}</title>
{{#if post}}
<meta name="keywords" content="{{#each post.tags}}{{name}},{{/each}}">
{{else}}
<meta name="keywords" content="android, javascript, sublime, freelance">
{{/if}}
<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.0" />
<link rel="stylesheet" type="text/css" href="{{asset "/css/normalize.css"}}" />
<link rel="stylesheet" type="text/css" href="{{asset "/css/main.css"}}" />
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body class="{{body_class}}">
{{> sidebar }}
<div class="content">
{{{body}}}
</div>
{{! ghost_foot prints a unminified version of jquery here :/ }}
{{!ghost_foot}}
{{! The main JavaScript file for Casper }}
{{> analytics}}
</body>
</html>