-
Notifications
You must be signed in to change notification settings - Fork 97
/
post.hbs
executable file
·37 lines (34 loc) · 1.14 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
{{!< default}}
{{#post}}
<article class="{{post_class}}">
{{> material-cover}}
<div class="post-card animated fade-in">
<a id="back-button" href="#open" title="Go back" class="hvr-grow">
<div class="back-button">
<i class="fa fa-arrow-left"></i>
</div>
</a>
<div class="post-container">
<div class="post-header">
<div class="meta">
<time datetime="{{date published_at format="MMMM DD, YYYY"}}">{{date published_at timeago="true"}}</time>
<span class="tags">{{tags prefix="in " separator=" "}}</span>
<span class="reading-time"> ~ {{reading_time}}.</span>
</div>
<h1 id="post-title">
{{{title}}}
</h1>
<div class="share">
{{> share }}
</div>
</div>
<div class="post-content">
{{content}}
</div>
{{> post-author-credit}}
{{> comments}}
</div>
</div>
{{> post-pagination}}
</article>
{{/post}}