-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdefault.hbs
48 lines (37 loc) · 1.75 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
<!DOCTYPE html>
<html>
<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 "favicon.ico"}}">
{{! Styles'n'Scripts }}
<link rel="stylesheet" type="text/css" href="{{asset "css/screen.css"}}" />
<link href='//fonts.googleapis.com/css?family=Mrs+Saint+Delafield|Merriweather:300italic,700,300,700italic|Open+Sans:400,700' rel='stylesheet' type='text/css'>
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body class="{{body_class}}">
<div id="html-wrapper">
<div id="html">
<div class="site-wrapper">
{{! Everything else gets inserted here }}
{{{body}}}
<footer class="site-footer">
<p class="copyright"><a href="{{@blog.url}}">{{@blog.title}}</a> © {{date format="YYYY"}} | <a href="{{@blog.url}}/rss">RSS Feed</a></p>
<p class="poweredby">Proudly published with <a href="https://ghost.org">Ghost</a></p>
<p><a href="https://github.com/serenader2014/decent">decent Theme</a> made by <a href="https://github.com/serenader2014">serenader</a> with <span class="heart">♥</span></p>
</footer>
</div>
<button class="go-to-top"></button>
</div>
</div>
<script type="text/javascript" src="{{asset "js/bundle.min.js"}}"></script>
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
</body>
</html>