-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathdefault.hbs
30 lines (23 loc) · 857 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
29
30
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="{{asset "css/style.css"}}">
{{ghost_head}}
</head>
<body class="{{body_class}}">
{{{body}}}
<footer>
<small>
© {{date format="YYYY"}} {{@blog.title}} on <a href="https://ghost.org/">Ghost</a> with <a href="https://github.com./ireade/openwriter" target="_blank">OpenWriter</a>
</small>
</footer>
{{ghost_foot}}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="{{asset "js/script.js"}}"></script>
</body>
</html>