-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.hbs
executable file
·42 lines (33 loc) · 906 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{{!< default}}
{{#post}}
<article class="art {{post_class}}">
<header class="art-header">
<div class="art-header-inner">
<time class="art-time">{{date published_at format="MMMM Do, YYYY"}}</time>
<h2 class="art-title">{{title}}</h2>
<p class="art-subtitle"></p>
</div>
</header>
<div class="art-body">
<div class="art-body-inner">
{{#if featured}}
<hr class="featured-article" />
{{/if}}
{{#if image}}
<img alt="cover" src="{{image}}">
{{/if}}
{{content}}
{{#author}}
<div class="art-author">
<img src="{{image}}">
<div class="info">
<time>Written on {{date published_at format="MMMM Do, YYYY"}}</time>
<h3><a href="{{url}}">{{name}}</a></h3>
<p>{{bio}}</p>
</div>
</div>
{{/author}}
</div>
</div>
</article>
{{/post}}