-
Notifications
You must be signed in to change notification settings - Fork 38
/
default.hbs
75 lines (61 loc) · 2.1 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
<!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"}}">
{{{block "styles"}}}
{{ghost_head}}
</head>
<body class="{{body_class}}{{#match @custom.title_font "=" "Elegant serif"}} has-serif-title{{/match}}{{#match @custom.body_font "=" "Elegant serif"}} has-serif-body{{/match}}">
<div class="site">
<header class="site-header gh-outer">
<div class="navbar">
<a class="logo" href="{{@site.url}}">
{{#if @site.logo}}
<img class="logo-image" src="{{@site.logo}}" alt="{{@site.title}}">
{{else}}
<span class="logo-text">{{@site.title}}</span>
{{/if}}
</a>
<div class="burger"></div>
</div>
</header>
<div class="site-content">
{{{body}}}
</div>
<footer class="gh-foot{{#unless @site.secondary_navigation}} no-menu{{/unless}} gh-outer">
<div class="gh-foot-inner gh-inner">
<div class="gh-copyright">
{{@site.title}} © {{date format="YYYY"}}
</div>
{{#if @site.secondary_navigation}}
<nav class="gh-foot-menu">
{{navigation type="secondary"}}
</nav>
{{/if}}
<div class="gh-powered-by">
<a href="https://ghost.org/" target="_blank" rel="noopener">Powered by Ghost</a>
</div>
</div>
</footer>
</div>
{{> "side-menu"}}
{{#is "post, page"}}
{{> "pswp"}}
{{/is}}
<script>
if (document.getElementsByClassName('tag-feed').length) {
document.getElementsByClassName('tag-feed')[0].style.height = window.innerHeight + 'px';
}
</script>
<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>