-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.hbs
37 lines (30 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>{{#unless post}}{{#if message}}{{message}} | {{@site.title}}{{/if}}{{meta_title}} | {{@site.description}}{{else}}{{meta_title}} | {{@site.title}}{{/unless}}</title>
{{> "meta"}}
{{{block "meta_index"}}}
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Noto+Sans:300,400,700">
<link rel="stylesheet" type="text/css" href="{{asset "css/vendor.css"}}" />
<link rel="stylesheet" type="text/css" href="{{asset "css/index.css"}}" />
<script src="https://kit.fontawesome.com/9e4b90971b.js"></script>
{{!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --}}
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
{{ghost_head}}
</head>
<body class="{{body_class}}">
<div id="content-wrapper" class="container">
{{> "header"}}
<main rol="main">
{{{body}}}
</main>
{{> "footer"}}
</div>
{{ghost_foot}}
</body>
</html>