forked from TryGhost/Ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.hbs
40 lines (31 loc) · 997 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
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="{{@site.locale}}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{meta_title}}</title>
<link rel="stylesheet" href="{{asset "built/screen.css"}}">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i%7CDosis:600,700&subset=latin-ext">
{{ghost_head}}
</head>
<body class="{{body_class}}{{{block "body_class"}}}">
<div class="site">
{{> header}}
<div class="site-content">
{{{body}}}
</div>
{{> footer}}
</div>
{{> off-canvas}}
{{> pswp}}
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous">
</script>
<script src="{{asset "built/main.min.js"}}"></script>
{{> facebook}}
{{{block "scripts"}}}
{{ghost_foot}}
</body>
</html>