-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.hbs
80 lines (68 loc) · 2.46 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
<!DOCTYPE html>
<html lang="{{@site.locale}}">
<head>
{{!-- Basic meta - advanced meta is output with {ghost_head} below --}}
<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"/>
<script src="{{asset "built/darkfox.js"}}"></script>
{{!-- This tag outputs all your advanced SEO meta, structured data, and other important settings,
it should always be the last tag before the closing head tag --}}
{{ghost_head}}
</head>
<body class="{{body_class}}">
<div class="df-default">
<div class="df-default__sidebar-1">
<a class="df-default__logo" href="{{@site.url}}">
{{#if @site.logo}}
<img src="{{@site.logo}}" alt="{{@site.title}}">
{{/if}}
</a>
{{#if @custom.logo_secondary}}
<a class="df-default__logo2" href="{{@site.url}}">
<img src="{{@custom.logo_secondary}}" alt="{{@site.title}}">
</a>
{{/if}}
<div id="copyright" class="df-default__copyright"></div>
<div class="df-default__socials">
{{#if @custom.social_twitter}}
<a class="df-default__social df-default--twitter" href="{{@custom.social_twitter}}">
<i class="fa-brands fa-twitter"></i>
</a>
{{/if}}
{{#if @custom.social_youtube}}
<a class="df-default__social df-default--youtube" href="{{@custom.social_youtube}}">
<i class="fa-brands fa-youtube"></i>
</a>
{{/if}}
{{#if @custom.social_soundcloud}}
<a class="df-default__social df-default--soundcloud" href="{{@custom.social_soundcloud}}">
<i class="fa-brands fa-soundcloud"></i>
</a>
{{/if}}
{{#if @custom.social_spotify}}
<a class="df-default__social df-default--spotify" href="{{@custom.social_spotify}}">
<i class="fa-brands fa-spotify"></i>
</a>
{{/if}}
</div>
<div class="df-default__navigation">
{{navigation type="primary"}}
<div class="df-default__search" data-ghost-search>Search</div>
</div>
</div>
<div class="df-default__content">
<div class="df-default__content-inner">
{{!-- All other templates get inserted here, index.hbs, post.hbs, etc --}}
{{{body}}}
</div>
</div>
</div>
{{!-- /.viewport --}}
{{!-- Scripts - handle member signups, responsive videos, infinite scroll, floating headers, and galleries --}}
{{!-- Ghost outputs required functional scripts with this tag - it should always be the last thing before the closing body tag --}}
{{ghost_foot}}
</body>
</html>