-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.hbs
63 lines (53 loc) · 2.29 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
<!DOCTYPE html>
<html lang="{{lang}}">
<head>
{{! Document Settings }}
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
{{! Page Meta }}
<title>{{meta_title}}</title>
<meta name="HandheldFriendly" content="True">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="{{asset "img/design/favicon.ico"}}">
{{! Styles'n'Scripts }}
<link rel="stylesheet" type="text/css" href="{{asset "css/normalize.css"}}">
<link rel="stylesheet" type="text/css" href="{{asset "css/screen.css"}}">
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body class="{{body_class}}">
<div id="topbar" class="nav">
<div id="head">
{{^is "home"}}
<a href="/">
{{#if @blog.logo}}
<img class="logo" src="{{@blog.logo}}" alt="Logo">
{{/if}}
<span class="nav-head">{{@blog.title}}</span>
</a>
{{/is}}
</div>
{{ navigation }}
</div>
{{! Everything else gets inserted here }}
{{{body}}}
{{foot}}
</div> <!-- #wrapper -->
{{! jQuery needs to come before ghost_foot so that jQuery can be used in code injection }}
<script type="text/javascript" src="{{asset "js/jquery.min.js"}}"></script>
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
<footer id="foot">
<strong>{{@blog.title}}</strong> · {{{t "Published with {ghostlink}" ghostlink="<a href=\"https://ghost.org\">Ghost</a>"}}} · {{t "Theme is"}} <a href="https://github.com/Nildeala/Stitch-Blue"><strong>Stitch Blue</strong></a>, {{t "by"}} Nildëala.
</footer>
{{! Bonus scripts }}
{{! A Ghost blog search engine }}
<script type="text/javascript" src="{{asset "js/jquery.ghosthunter.js"}}"></script>
{{! Nice little script to hide/show top bar on scroll }}
<script type="text/javascript" src="{{asset "js/scroll-up-bar.min.js"}}"></script>
{{! Responsive videos }}
<script type="text/javascript" src="{{asset "js/jquery.fitvids.js"}}"></script>
{{! Main JavaScript file }}
<script type="text/javascript" src="{{asset "js/index.js"}}"></script>
</body>
</html>