forked from TryGhost/Casper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.hbs
executable file
·56 lines (44 loc) · 1.5 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
<!DOCTYPE html>
<html lang="{{lang}}">
<head>
{{!-- Document Settings --}}
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
{{!-- Page Meta --}}
<title>{{meta_title}}</title>
{{!-- Mobile Meta --}}
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{{!-- Styles'n'Scripts --}}
{{!-- <link rel="stylesheet" type="text/css" href="{{asset 'css/app.min.css'}}" /> --}}
{{> compiled/inline-css }}
{{!-- Ghost outputs important style and meta data with this tag --}}
{{ghost_head}}
</head>
<body class="{{body_class}}">
{{!-- Icons --}}
{{> svg-sprite}}
{{!-- The blog navigation links --}}
{{> header}}
{{!-- Blog search --}}
{{> search}}
<main class="main">
{{!-- All the main content gets inserted here, index.hbs, post.hbs, etc --}}
{{{body}}}
</main>
{{!-- The footer at the very bottom --}}
{{> footer}}
{{!-- Ghost outputs important scripts and data with this tag --}}
{{ghost_foot}}
{{!-- Global variables --}}
<script>
// The number of pages available for loading more posts
var maxPages = parseInt('{{pagination.pages}}');
// Disqus shortname
// Replace 'bironthemes-demo' with your disqus account shortname
var disqus_shortname = 'biron-demo';
</script>
{{!-- Main theme scripts --}}
<script async src="{{asset 'js/app.min.js'}}"></script>
</body>
</html>