-
Notifications
You must be signed in to change notification settings - Fork 3
/
default.hbs
38 lines (27 loc) · 985 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
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="{{@site.locale}}">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="{{asset "css/screen.css"}}" />
<title>{{meta_title}}</title>
{{ghost_head}}
{{!-- Outputs important meta data and settings, should always be in
<head> --}}
</head>
<body>
<div>
{{{body}}}
{{!-- All content gets inserted here, index.hbs, post.hbs, etc --}}
<footer>
Published with <a href="https://ghost.org" target="_blank" rel="noopener">Ghost</a>.
Powered by <a href="https://tailwindcss.com" target="_blank" rel="noopener">Tailwind CSS</a>.
</footer>
</div>
{{!-- <foot> --}}
{{ghost_foot}}
{{!-- Outputs important scripts - should always be included before closing body tag --}}
<script type="module" src="{{asset "js/index.js"}}"></script>
</body>
</html>