forked from hoist/hoist-ghost
-
Notifications
You must be signed in to change notification settings - Fork 14
/
default.hbs
executable file
·87 lines (63 loc) · 2.92 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
<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="#"></script> <!-- Typekit config here -->
<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="/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="#" method="post"> <!-- Your createsend link here -->
<div class="input-group">
<input class="form-control" input="" id="fieldEmail" name="cm-ngby-ngby" type="email" required="" placeholder="Email Address"> <!-- You may need to change the name attribute -->
<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>
// Tracking Code Here
</script>
<!--Google Analytics-->
</body>
</html>