-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdefault.hbs
35 lines (35 loc) · 1.59 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
<!DOCTYPE html>
<html class="borderbox theme-dark_defaults">
<head>
{{!-- Document Settings --}}
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
{{!-- Base Meta --}}
<title>{{meta_title}}</title>
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" />
{{!-- Styles'n'Scripts --}}
<link rel="stylesheet" type="text/css" href="{{asset "built/ghostcode.css"}}" />
{{!-- This tag outputs SEO meta+structured data and other important settings --}}
{{ghost_head}}
</head>
<body class="{{body_class}} body-blur borderbox">
<div class="site-wrapper">
<aside class="side-bar-wrap flex" id="J-sidebar-wrap">
{{> "side-bar-header/index"}}
{{> "side-bar-body/index"}}
</aside>
{{!-- All the main content gets inserted here, index.hbs, post.hbs, etc --}}
<div class="site-content">
{{{body}}}
</div>
{{> "footer/index"}}
</div>
{{!-- The #block helper will pull in data from the #contentFor other template files. In this case, there's some JavaScript which we only want to use in post.hbs, but it needs to be included down here, after jQuery has already loaded. --}}
{{{block "scripts"}}}
<script src="{{asset "jquery-3.2.1.min.js"}}" defer crossorigin="anonymous"></script>
{{!-- Ghost outputs important scripts and data with this tag - it should always be the very last thing before the closing body tag --}}
<script src="{{asset "built/ghostcode.js"}}" defer></script>
{{ghost_foot}}
</body>
</html>