-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.hbs
103 lines (88 loc) · 4.09 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!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=Inter:wght@400;500;600;700&display=swap">
<link rel="stylesheet" href="{{asset "built/screen.css"}}">
{{ghost_head}}
</head>
<body class="{{body_class}} is-head-b--a_n">
<div class="gh-site">
<header id="gh-head" class="gh-head gh-outer">
<div class="gh-head-inner gh-inner">
<div class="gh-head-brand">
<a class="gh-head-logo" href="{{@site.url}}">
{{#if @site.logo}}
<img src="{{@site.logo}}" alt="{{@site.title}}">
{{else}}
{{@site.title}}
{{/if}}
</a>
<button class="gh-burger"></button>
</div>
<nav class="gh-head-menu">
{{navigation}}
</nav>
<div class="gh-head-actions">
{{#unless @member}}
<a class="gh-head-btn" href="#/portal/signup">
{{> icons/email}}
Subscribe
</a>
{{else}}
<a class="gh-head-btn" href="#/portal/account">Account</a>
{{/unless}}
</div>
</div>
</header>
{{{body}}}
<div class="gh-subscribe">
<div class="gh-outer">
<section class="gh-subscribe-inner">
<h3 class="gh-subscribe-title">Thanks for visiting {{@site.title}}</h3>
{{^if @member}}
<div class="gh-subscribe-description">Subscribing will let me send you emails when I write new content - and nothing else - I promise.</div>
<a class="gh-subscribe-input" href="#/portal/signup">
<div class="gh-subscribe-input-text">
{{> icons/email}}
</div>
<div class="gh-subscribe-input-btn">Subscribe</div>
</a>
{{/if}}
</section>
</div>
</div>
<footer class="gh-foot gh-outer">
<div class="bk-inner">
<a class="" href="https://github.com/benkline" target="_blank" rel="noopener">{{> icons/github}}</a>
<a class="" href="https://www.linkedin.com/in/boisebenkline/" target="_blank" rel="noopener">{{> icons/linkedin}}</a>
<a class="" href="https://twitter.com/boisebenkline" target="_blank" rel="noopener">{{> icons/twitter}}</a>
<a class="" href="https://www.facebook.com/boisebenkline" target="_blank" rel="noopener">{{> icons/facebook}}</a>
<a class="" href="https://www.instagram.com/boisebenkline/" target="_blank" rel="noopener">{{> icons/instagram}}</a>
<a class="" href="https://www.youtube.com/user/klineben" target="_blank" rel="noopener">{{> icons/youtube}}</a>
</div>
<div class="gh-foot-inner gh-inner">
<div class="gh-copyright">
{{@site.title}} © {{date format="YYYY"}}
</div>
<nav class="gh-foot-menu">
{{navigation type="secondary"}}
</nav>
<div class="gh-powered-by">
<a href="https://ghost.org/" target="_blank" rel="noopener">Powered by Ghost</a>
</div>
</div>
</footer>
</div>
{{#is "post, page"}}
{{> pswp}}
{{/is}}
<script src="{{asset "built/main.min.js"}}"></script>
{{ghost_foot}}
</body>
</html>