forked from kathyqian/crisp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.hbs
26 lines (23 loc) · 948 Bytes
/
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
{{!< default}}
{{#post}}
{{#if image}}<div class="post-header" style="background-image: url({{image}})"></div>{{/if}}
<article id="{{id}}" class="{{post_class}}">
<div class="post-stamp">{{date published_at format='YYYY/MM/DD'}}<span class="taglist">{{tags separator=" " prefix=" · "}}</span>{{#if featured}}<span class="separator"> · </span><i class="fa fa-star-o feature-star"></i>{{/if}}</div>
<h1 class="post-title">{{title}}</h1>
{{content}}
</article>
<div class="container">
<div class="author clearfix">
{{#author}}
<h3>Author</h3>
<img src="{{image}}" alt="{{name}}" />
<div class="info">
<a href="{{url}}" class="name">{{name}}</a>
<p class="bio">{{bio}}</p>
</div>
{{/author}}
</div>
</div>
{{> share}}
{{> comments}}
{{/post}}