forked from TryGhost/Dawn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.hbs
60 lines (51 loc) · 1.55 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
57
58
59
60
<!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="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,400;0,700;0,800;1,400;1,700&display=swap">
<script>
var siteUrl = '{{@site.url}}';
</script>
<script>
var localTheme = localStorage.getItem('dawn_theme');
switch (localTheme) {
case 'dark':
document.documentElement.classList.add('theme-dark');
break;
case 'light':
document.documentElement.classList.add('theme-light');
break;
default:
break;
}
</script>
{{ghost_head}}
</head>
<body class="{{body_class}}{{{block "body_class"}}}">
{{> icons}}
<div class="site">
{{> header}}
{{#is "home"}}
{{> cover}}
{{> featured}}
{{/is}}
<div class="site-content">
{{{body}}}
</div>
{{> footer}}
{{> modal}}
{{> pswp}}
</div>
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous">
</script>
<script src="{{asset "built/main.min.js"}}"></script>
{{ghost_foot}}
</body>
</html>