-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdefault.hbs
38 lines (29 loc) · 970 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
<!DOCTYPE html>
<html lang="{{@site.locale}}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{meta_title}}</title>
<link rel="stylesheet" href="{{asset "built/screen.css"}}">
{{#is "post"}}
<script src="{{asset "built/prism.js"}}"></script>
<link rel="stylesheet" href="{{asset "built/prism.css"}}">
{{/is}}
{{!-- {{> "typography/noto"}} --}}
{{#is "home, tag, author, index"}}
{{ghost_head exclude="card_assets,cta_styles,comment_counts,announcement"}}
{{else}}
{{ghost_head}}
{{/is}}
</head>
<body class="{{body_class}} bg-gradient-to-r from-darker via-darker to-dark">
{{> "icons"}}
{{> "components/nav"}}
{{!-- Main content, dynamically inserted here --}}
{{{body}}}
{{!-- Footer --}}
{{> "components/footer"}}
<script src="{{asset "built/main.js"}}" defer></script>
{{ghost_foot}}
</body>
</html>