-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.hbs
37 lines (33 loc) · 971 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
{{!< default}}
<div>
<header class="header">
<div class="header__nav">
{{navigation type="secondary"}}
</div>
</header>
<div class="page-width">
{{#post}}
{{> "breadcrumbs"}}
<header class="post-header">
<h1 class="post-title">{{title}}</h1>
</header>
<div class="content-center">
{{reading_time}}
</div>
<hr />
<section class="post-content">
{{content}}
</section>
<div class="pagination">
{{#prev_post in="primary_tag"}}
<p> <<<< <a href="{{url}}">{{title}}</a></p>
{{/prev_post}}
{{#next_post in="primary_tag"}}
<p><a href="{{url}}">{{title}}</a> >>>> </p>
{{/next_post}}
</div>
<hr />
{{comments title="Whatcha gotta say?" count=true saturation=80}}
{{/post}}
</div>
</div>