-
Notifications
You must be signed in to change notification settings - Fork 17
/
default.hbs
executable file
·95 lines (68 loc) · 3.27 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width">
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}" />
<link rel="shortcut icon" href="{{asset "favicon.ico"}}">
<link rel="stylesheet" type="text/css" href="{{asset "styles/normalize.css"}}" />
<link rel="stylesheet" type="text/css" href="{{asset "styles/screen.css"}}" />
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="{{asset "styles/prism.css"}}" />
<script src="//use.typekit.net/gff5rgh.js"></script>
<script>try{Typekit.load();}catch(e){}</script>
{{ghost_head}}
</head>
<body class="{{body_class}}">
<sidebar>
<a href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="Blog Logo"/></a>
{{!-- <div>
<h4>Recomended Notes</h4>
{{#foreach all}}
{{this}}
{{/foreach}}
</div> --}}
{{!-- <div>
<h4>Topics</h4>
<a href="/tag/design/">Design</a>
<a href="/tag/development/">Development</a>
<a href="/tag/startups/">Startups</a>
<a href="/tag/strategy/">Stratergy</a>
</div> --}}
<div>
<h4>Subscribe</h4>
<a href="{{@blog.url}}/rss">RSS <i class="fa fa-rss"></i></a>
<a href="#" id="showEmail" >Join our email newsletter <i class="fa fa-envelope-o"></i></a>
<form action="http://endgame.createsend.com/t/j/s/ngby/" method="post">
<div class="input-group">
<input class="form-control" input="" id="fieldEmail" name="cm-ngby-ngby" type="email" required="" placeholder="Email Address">
<div class="input-group-btn">
<button class="btn btn-default colored" type="submit">Sign Up Now</button>
</div>
</div>
</form>
</div>
</sidebar>
<main>
<!-- Everything else gets inserted here-->
{{{body}}}
<header class="copyright">
<div>All content copyright <a href="{{@blog.url}}/">{{@blog.title}}</a> © {{date format="YYYY"}} • All rights reserved.</div>
</header>
</main>
{{ghost_foot}}
<script type="text/javascript" src="{{asset "js/jquery.fitvids.js"}}"></script>
<script type="text/javascript" src="{{asset "js/index.js"}}"></script>
<script type="text/javascript" src="{{asset "js/prism.js"}}"></script>
<!--Google Analytics-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-41897788-2', 'hoistapps.com');
ga('send', 'pageview');
</script>
<!--Google Analytics-->
</body>
</html>