forked from thoughtbot/ghost-theme-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.hbs
28 lines (28 loc) · 853 Bytes
/
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
<!DOCTYPE html>
<html lang="{{lang}}">
<head>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{{meta_title}}</title>
<link rel="stylesheet" type="text/css" href="{{asset "css/app.css"}}">
{{ghost_head}}
</head>
<body class="{{body_class}}">
{{{body}}}
<footer>
<a href="{{@blog.url}}/rss/">
{{t "Subscribe via RSS!"}}
</a>
{{#if @labs.subscribers}}
{{subscribe_form placeholder=(t "[email protected]")}}
{{/if}}
<section>
<a href="{{@blog.url}}/">{{@blog.title}}</a>
© {{date format="YYYY"}} • {{t "All rights reserved."}}
</section>
</footer>
{{ghost_foot}}
<script type="text/javascript" src="{{asset "js/app.js"}}"></script>
</body>
</html>