-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdefault.hbs
36 lines (31 loc) · 1.19 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
<!DOCTYPE html>
<html lang="{{@site.locale}}">
<head>
{{!-- Document Settings --}}
<meta charset="utf-8">
{{!-- Page Meta --}}
<title>{{meta_title}}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{{!-- Styles --}}
<link rel="stylesheet" type="text/css" href="{{asset "css/style.css"}}" />
{{!-- SEO meta+structured data and other important settings --}}
{{ghost_head}}
</head>
<body id="page" class="{{body_class}}">
<div class="container">
{{!-- The tag below includes the theme header - partials/header.hbs --}}
{{> header}}
{{!-- Everything else gets inserted here --}}
{{{body}}}
{{!-- The tag below includes the theme footer - partials/footer.hbs --}}
{{> footer}}
</div>
{{!-- Scripts --}}
<script src="{{asset "js/index.js"}}"></script>
{{#is "post, page"}}
<script src="{{asset "js/post.js"}}"></script>
{{/is}}
{{!-- Ghost scripts and data. Should always be the very last thing before the closing body tag --}}
{{ghost_foot}}
</body>
</html>