forked from godofredoninja/Mapache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.hbs
45 lines (36 loc) · 1.54 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
<!DOCTYPE html>
<head>
{{!-- Document Settings --}}
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
{{!-- Page Meta --}}
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}" />
{{!-- Mobile Meta --}}
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
{{!-- Brand icon --}}
<link rel="shortcut icon" href="{{asset "img/icon.png"}}" />
<link rel="icon" sizes="192x192" href="{{asset "img/icon.png"}}" />
{{!-- Styles'n'Scripts --}}
<link rel="stylesheet" type="text/css" href="{{asset "css/main.css"}}" />
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono|Roboto:300,400,500" rel="stylesheet">
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body class="{{#is "home"}}is-frontpage{{/is}}{{#is "post"}}is-article{{/is}}{{#is "tag"}}is-tag{{/is}}{{#is "author"}}is-author{{/is}}" mapache-page-url="{{@blog.url}}">
{{!-- Add Header --}}
{{> "header"}}
{{!-- Add Content Body --}}
<main class="main">{{{body}}}</main>
{{!-- Add footer --}}
{{> "footer"}}
{{!-- jQuery --}}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
<a href="#" class="scroll_top u-h-b-lg i-arrow_upward"></a>
{{!-- The main JavaScript file for Mapache --}}
<script src="{{asset "js/bundle.min.js"}}"></script>
</body>
</html>