forked from max-holland/Peeves
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.hbs
executable file
·71 lines (54 loc) · 2.44 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
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="en" class="no-js ie6 oldie"> <![endif]-->
<!--[if IE 7]> <html lang="en" class="no-js ie7 oldie"> <![endif]-->
<!--[if IE 8]> <html lang="en" class="no-js ie8 oldie"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class='no-js' lang='en'>
<!--<![endif]-->
<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}}" />
<meta name="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1, user-scalable=no">
<link rel="shortcut icon" href="{{asset "favicon.ico"}}">
<!-- Google Authorship and Publisher Markup -->
{{> google-authorship}}
{{! Styles'n'Scripts }}
<link rel="stylesheet" type="text/css" href="{{asset "css/peeves.css"}}" />
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body itemscope itemtype="http://schema.org/Blog">
<!--[if lt IE 10]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<aside id="sidebar" class="sidebar">
<ul>
{{> sidebar}}
</ul>
</aside>
{{! Everything else gets inserted here }}
<div class="page-wrapper">
<nav id="navbar" class="navbar">
<button class="menu-btn" id="openMenu"><span class="table-span"><span><i class="fa fa-bars"></i></span></span></button>
</nav>
{{{body}}}
<footer class="main-footer">
<div class="grid-container grid-720">
<section class="copyright">All content copyright <a href="{{@blog.url}}/">{{@blog.title}}</a> © {{date format="YYYY"}} • All rights reserved.</section>
<section class="poweredby">Proudly published with <a class="icon-ghost" href="http://ghost.org">Ghost</a></section>
</div>
</footer>
<input type="hidden" id="blog-title" value="{{@blog.title}}">
</div>
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
<script src="{{asset "js/peeves.js"}}"></script>
{{> google-analytics}}
</body>
</html>