forked from roryg/ghostwriter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.hbs
116 lines (80 loc) · 4.38 KB
/
post.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{{!< default}}
{{> header-ii}}
<main id="wrapper">
{{!-- The Post --}}
{{#post}}
<article id="main-content-area" class="{{post_class}} container full" role="main">
{{!-- Post Header --}}
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-8 col-sm-12 col-xs-12 col-md-offset-2 col-lg-offset-3">
<a href="{{@blog.url}}" title="Back" class="back_btn">Table of Contents</a>
{{!-- Post icon --}}
<!--<i class="post icon aecon-bookmark"></i>-->
{{!-- Post Meta Top --}}
<div class="post meta">
{{!-- Post Date --}}
<time class="post date" datetime="{{date format="YYYY-MM-DD"}}">{{date format='DD MMM YYYY'}}</time>
<!--<div class="dot separator">.</div>-->
{{!-- Post Author --}}
<!--<span class="post author">{{author.name}}</span>-->
</div>
{{!-- Post Title --}}
<header>
<h1>{{{title}}}</h1>
</header>
</div>
</div>
</div>
{{!-- Post Content --}}
<div class="post content">
<div class="container">
<div class="row">
{{!-- The Content --}}
<div class="col-lg-6 col-md-8 col-sm-12 col-xs-12 col-md-offset-2 col-lg-offset-3 the content">
{{content}}
</div>
{{!-- Leave A Comment --}}
<div class="col-lg-6 col-md-8 col-sm-12 col-xs-12 col-md-offset-2 col-lg-offset-3">
<aside class="in-post meta comment_panel">
<p>Want to leave a comment? Discuss the post on <a href="http://www.twitter.com/MikeyAlder">Twitter</a> where I'll definetly reply to your comments.</p>
<p>You can follow me <a href="http://www.twitter.com/MikeyAlder">@MikeyAlder</p>
</aside>
{{!-- Tags --}}
<!--<aside class="in-post meta">
{{!-- Meta Section Title --}}
<h4 class="half stretched">Tags</h4>
{{!-- Meta Section Content --}}
<div class="meta content">
{{!-- Tags Meta --}}
<p class="meta taxonomy">{{#if tags}}{{tags separator=", "}}{{/if}}
</p>
</div>
</aside>-->
{{!-- Share --}}
<aside class="in-post meta center_text">
{{!-- Meta Section Title --}}
<h4 class="half stretched">Share this post</h4>
{{!-- Meta Section Content --}}
<div class="meta content">
{{!-- Share Meta --}}
<div class="meta social">
<a href="http://twitter.com/share?text={{title}}&url={{url absolute="true"}}" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;"><i class="icon-twitter-bird"></i>
</a>
<a href="https://www.facebook.com/sharer/sharer.php?u={{url absolute="true"}}" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;"><i class="icon-facebook"></i>
</a>
<a href="https://plus.google.com/share?url={{url absolute="true"}}" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;"><i class="icon-googleplus-rect"></i>
</a>
</div>
</div>
</aside>
<a href="#top" title="Top" class="back_btn top_btn">Top</a>
</div>
</div>
</div>
</div>
</article>
{{/post}}
</main>
<!-- FOOTER-->
{{> footer}}