-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.hbs
82 lines (69 loc) · 2.88 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- META START -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{!-- Page Title --}}
<title>{{meta_title}}</title>
<!-- Ghost Head START -->
{{ghost_head}}
<!-- UI Component START -->
<link rel="stylesheet" type="text/css" href="{{asset "css/bulma.css"}}">
<link rel="stylesheet" type="text/css" href="{{asset "css/prism.css"}}">
<link rel="stylesheet" type="text/css" href="{{asset "css/hkzclarity.css"}}">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Lato' type='text/css' media='all' />
</head>
<body class="{{body_class}}">
<div id="header-navigation">
<div class="nav container">
<div class="nav-left">
<a class="nav-item" href="{{@site.url}}">
{{#if @site.logo}}
<img id="header-logo" src="{{@site.logo}}" alt="logo">
{{else}}
<h2 id="header-logo">{{@site.title}}</h2>
{{/if}}
</a>
</div> <!-- .nav-left -->
<div class="nav-right">
<input id="toggle-head-nav" type="checkbox">
<label for="toggle-head-nav" class="nav-toggle">
<span></span>
<span></span>
<span></span>
</label> <!-- #toggle-head-nav.nav-toggle -->
<div id="header-nav-collapse">
{{!-- Site Navigation --}}
{{navigation}}
</div>
</div> <!-- .nav-right -->
</div> <!-- .container -->
</div> <!-- #header-navigation -->
{{!-- Site Content Wrapper --}}
{{{body}}}
{{#if post}}
<!-- UX Component START -->
<!-- DISQUS Tracker -->
<script id="dsq-count-scr" src="//<your-disqus-site-id>.disqus.com/count.js" async></script>
<!-- PRISM JS -->
<script src="{{asset "js/prism.js"}}"></script>
<!-- UX Component END -->
{{/if}}
{{#if ghost_foot}}
<!-- Ghost Foot START -->
{{ghost_foot}}
<!-- Ghost Foot END -->
{{/if}}
<footer>
<div class="content-block center-block">
<h2 class="is-hidden-mobile">{{@site.description}}</h2>
<div id="footnote" class="columns is-gapless">
<span id="copyright-note" class="column">Copyright © 2017, <a href="/">{{@site.title}}</a></span>
<span id="engine-note" class="column">Proudly Published with <a href="https://ghost.org/">Ghost</a></span>
</div> <!-- #footnote.column -->
</div><!-- .content-block.center-block -->
</footer>
</body> <!-- END OF BODY CONTENT -->
</html>