forked from TryGhost/Bulletin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.hbs
56 lines (46 loc) · 1.69 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
44
45
46
47
48
49
50
51
52
53
54
55
56
<!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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,700&family=Mulish:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,700&display=swap">
{{#is "home"}}
<link href="https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600&display=swap" rel="stylesheet">
{{/is}}
<link rel="stylesheet" href="{{asset "built/screen.css"}}">
<link rel="stylesheet" href="{{asset "css/custom.css"}}">
<script>
document.documentElement.style.setProperty('--inner-height', window.innerHeight + 'px');
</script>
{{ghost_head}}
</head>
<body class="{{body_class}} is-head-brand{{^if @member.paid}}{{#is "home"}} is-home-cta{{/is}}{{/if}} has-serif-title has-serif-body" id="top">
<div class="gh-site">
{{^if @member.paid}}
{{^is "home"}}
{{> header}}
{{/is}}
{{else}}
{{> header}}
{{/if}}
{{{body}}}
{{^if @member.paid}}
{{^is "home"}}
{{> footer}}
{{/is}}
{{else}}
{{> footer}}
{{/if}}
</div>
{{#is "post, page"}}
{{> pswp}}
{{/is}}
<script src="{{asset "built/main.min.js"}}"></script>
<script src="{{asset "js/custom.js"}}"></script>
{{{block "scripts"}}}
{{ghost_foot}}
</body>
</html>