forked from godofredoninja/Paway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.hbs
60 lines (46 loc) · 1.95 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="{{@site.lang}}">
<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" />
{{!-- Styles'n'Scripts --}}
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,700|Playfair+Display:400,400i,700,700i" rel="stylesheet">
{{!-- <link rel="stylesheet" type="text/css" href="{{asset "styles/main.css"}}"/> --}}
<style>{{> "styles"}}</style>
{{!-- This tag outputs SEO meta+structured data and other important settings --}}
{{ghost_head}}
</head>
<body class="{{body_class}} {{#is "post, page"}}is-article{{/is}}">
{{!-- Site Header - partials/header.hbs --}}
{{> "header"}}
{{!-- Sidenav - partials/sidenav.hbs --}}
{{> "sidenav"}}
<div class="site-wrapper">
{{!-- All the main content gets inserted here, index.hbs, post.hbs, etc --}}
{{{body}}}
</div>
{{!-- Instagram Feed - partials/widget/widget-instagram.hbs--}}
{{> "widget/widget-instagram"}}
{{!-- Search - partials/widget/widget-search.hbs--}}
{{> "widget/widget-search"}}
{{!-- Site Fotoer - partials/footer.hbs--}}
{{> "footer"}}
{{!-- Site URL --}}
<script>var siteUrl = '{{@site.url}}';</script>
{{!-- Ghost outputs important scripts and data with this tag --}}
{{ghost_foot}}
{{!-- Main Scripts --}}
<script src="{{asset "scripts/main.js"}}"></script>
{{!-- Search --}}
{{!-- Content APi --}}
<script src="https://unpkg.com/@tryghost/[email protected]/umd/content-api.min.js" defer></script>
<script src="{{asset "scripts/search.js"}}" defer></script>
{{!-- The #block helper will pull in data from the #contentFor other template files. --}}
{{{block "scripts"}}}
</body>
</html>