-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpost.hbs
38 lines (32 loc) · 858 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
{{!< default}}
{{#post}}
<main id="main" role="main">
<article class="post single {{post_class}}">
<h2 class="title"><a href="{{url}}">{{{title}}}</a></h2>
<time>{{date published_at format="MMMM DD, YYYY"}}</time>
<section class="content single-content">
{{content}}
</section>
<div class="tags">
{{tags separator=""}}
</div>
</article>
<section class="post-nav clearfix">
{{#prev_post}}
<a class="left nav prev" href="{{url}}">
<span class="icon icon-chevron-left"></span>
<span class="text">Previous</span>
</a>
{{/prev_post}}
{{#next_post}}
<a class="right nav next" href="{{url}}">
<span class="text">Next</span>
<span class="icon icon-chevron-right"></span>
</a>
{{/next_post}}
</section>
<section class="comments">
<div id="disqus_thread"></div>
</section>
</main>
{{/post}}