-
Notifications
You must be signed in to change notification settings - Fork 4
/
default.hbs
executable file
·44 lines (34 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
{{!-- title --}}
<title>{{meta_title}}</title>
<link rel="favicon" href="{{asset '/favicon.ico'}}">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width"/>
<link rel="stylesheet" type="text/css" href="{{asset '/styles/spacegrid.css'}}">
<link rel="stylesheet" type="text/css" media="screen" href="{{asset '/styles/main.css'}}">{{!-- scripts --}}
<script type="text/javascript" src="{{asset '/scripts/jquery.js'}}"></script>
<script src="https://use.fontawesome.com/572cb92a4b.js"></script>
{{!-- ghost head --}}
{{ghost_head}}
</head>
<body class="{{body_class}}">
{{navigation}}
{{!-- content --}}
<main id="content">
{{{body}}}
</main>
{{!-- footer --}}
<footer>
<div class="footer" align="center">
<div class="footer-text">
Made with <i class="icon-color fa fa-heart" aria-hidden="true"></i> using <a
href="http://github.com/jonathanspeek/spacegrid">Spacegrid</a>
</div>
</div>
</footer>
{{!-- ghost foot --}}
{{ghost_foot}}
</body>
</html>