forked from Kikobeats/uno-zen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
default.hbs
executable file
·31 lines (28 loc) · 939 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{meta_title}}</title>
{{> meta}}
<link href='https://fonts.googleapis.com/css?family=Raleway:400,600%7CRoboto+Slab:300,400' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="{{asset "css/uno-zen-revised.css"}}" />
{{ghost_head}}
</head>
<body class="{{body_class}}">
<header id="menu-button" class="expanded">
<a><i class="icon icon-list"></i></a>
</header>
{{> aside}}
<main data-no-instant>
<section class="content">
{{{body}}}
{{> footer}}
</section>
</main>
{{ghost_foot}}
<script src="{{asset "js/uno-zen-revised.common.js"}}" type="text/javascript" charset="utf-8"></script>
{{#is "post, page"}}
<script src="{{asset "js/uno-zen-revised.post.js"}}" type="text/javascript" charset="utf-8"></script>
{{/is}}
{{> google-analytics}}
</body>
</html>