-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.hbs
43 lines (23 loc) · 895 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
43
{{!< default}}
{{! The comment above "< default" means - insert everything in this file into
the {body} of the default.hbs template, which contains our header/footer. }}
{{! Everything inside the #post tags pulls data from the post }}
{{#post}}
<main class="content" role="main">
<article class="{{post_class}}">
<header class="post-header">
<h2 class="post-title">{{title}}</h2>
</header>
<section class="post-content">
{{content}}
</section>
<footer class="post-footer">
<section class="post-meta">
{{author}}
{{tags prefix=" on "}}
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time>
</section>
</footer>
</article>
</main>
{{/post}}