This repository has been archived by the owner on Jun 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.hbs
55 lines (44 loc) · 1.79 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="{{asset "/favicon.ico"}}">
<link rel="stylesheet" href="{{asset "styles/css/main.css"}}" media="screen, projection, handheld" />
<link rel="stylesheet" href="{{asset "styles/css/print.css"}}" media="print" />
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Fira+Sans:300,500,300italic,500italic">
{{ghost_head}}
</head>
<body class="{{body_class}}">
<header class="site-header">
{{> "header"}}
</header>
<main>
{{{body}}}
</main>
<footer class="site-footer clearfix">
<div class="wrapper clearfix">
<div class="left">
<small class="copyright"><a href="{{@blog.url}}"> © {{date format="YYYY"}} {{@blog.title}}</a></small>
<br>
<span class="poweredby">Proudly published with <a href="https://ghost.org">Ghost</a> with the <a href="https://github.com/PaulAdamDavis/Mono">Mono</a> theme</span>
</div>
<div class="right">
<br>
<a href="{{@blog.url}}/rss/">RSS Feed</a>
</div>
</div>
</footer>
{{ghost_foot}}
<script type="text/javascript" src="{{asset "js/jquery.fitvids.js"}}"></script>
{{#is "post"}}
<script type="text/javascript" src="{{asset "js/bigfoot.min.js"}}"></script>
{{/is}}
<script type="text/javascript" src="{{asset "js/index.js"}}"></script>
</body>
</html>