-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.hbs
42 lines (35 loc) · 1.1 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
<!DOCTYPE HTML>
<html lang="{{@site.locale}}">
<head>
<title>{{meta_title}}</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="{{asset "css/main.css"}}" />
<link rel="stylesheet" href="{{asset "css/fontawesome.css"}}" />
{{ghost_head}}
</head>
<body class="is-preload {{body_class}}">
<!-- Wrapper -->
<div id="wrapper" style="background-image: url('{{@site.cover_image}}');">
<!-- Header -->
{{> header}}
<!-- Menu -->
{{> menu}}
<!-- Main -->
<div id="main" style="margin-top: 460px">
{{{body}}}
</div>
{{#is "index"}}
<!-- Sidebar -->
{{> sidebar }}
{{/is}}
</div>
<!-- Scripts -->
<script src="{{asset "js/jquery.min.js"}}"></script>
<script src="{{asset "js/browser.min.js"}}"></script>
<script src="{{asset "js/breakpoints.min.js"}}"></script>
<script src="{{asset "js/util.js"}}"></script>
<script src="{{asset "js/main.js"}}"></script>
{{ghost_foot}}
</body>
</html>