-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.hbs
43 lines (39 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{{meta_title}}</title>
<link rel="stylesheet" type="text/css" href="{{asset "built/app.css"}}">
{{ghost_head}}
</head>
<body class="{{body_class}}">
{{> "site-header"}}
<section class="section">
{{{body}}}
</section>
{{> "site-footer"}}
{{!-- Email subscribe form at the bottom of the page --}}
{{#if @labs.subscribers}}
{{> "subscribe-modal"}}
{{/if}}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
{{ghost_foot}}
{{#if @config.use_applause}}
<script src="https://unpkg.com/applause-button/dist/applause-button.js"></script>
{{/if}}
{{#if @config.use_commento}}
<script src="https://cdn.commento.io/js/commento.js" data-auto-init="false"></script>
<script>
if (!window.disableCommento) {
window.commento.main();
}
</script>
{{/if}}
<script src="{{asset "lib/highlight.pack.js"}}"></script>
<script src="{{asset "built/app.js"}}"></script>
</body>
</html>