-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdefault.hbs
More file actions
42 lines (41 loc) · 1.55 KB
/
Copy pathdefault.hbs
File metadata and controls
42 lines (41 loc) · 1.55 KB
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
<!DOCTYPE html>
<html lang="{{@site.locale}}">
<head>
<title>{{meta_title}}</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cousine:ital@0;1&family=Questrial&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="{{asset "built/screen.css"}}" />
{{ghost_head}}
</head>
<body class="{{body_class}}">
<main class="wrap">
{{{body}}}
</main>
<div class="menu">
<input type="checkbox" class="menu-cb sr-only" name="menu-cb" id="menu-cb" />
<label class="menu-icon" for="menu-cb">
<span aria-label="Toggle menu">
{{> "icons/avatar"}}
</span>
</label>
<nav class="rg-navigation">
{{navigation}}
</nav>
</div>
<div class="bottom-actions">
<a class="button secondary" href="/subscribe" data-portal>Newsletter</a>
<a
class="button primary disabled" id="shuffler"
{{#if post}}data-post="{{post.id}}"{{else if posts}}data-post="{{posts.0.id}}"{{/if}}
{{#if tag}}data-tag="{{tag.slug}}"{{/if}}
>Shuffle</a>
</div>
{{ghost_foot}}
</body>
<script src="{{asset 'assets/built/casper.js'}}" async></script>
</html>