-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.hbs
34 lines (25 loc) · 913 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
{{!< default}}
<main class="content" role="main">
<article class="{{post_class}}">
{{! Everything inside the #post tags pulls data from the post }}
{{#post}}
<h1 class="post-title">{{{title}}}</h1>
<section class="post-meta">
<time datetime="{{date format='MM-DD-YYYY'}}">PUBLISHED: {{date format="MM.DD.YYYY"}}</time>
</section>
{{#if image }}<div class="feature-image"><img src="{{image}}"></div>{{/if}}
<section class="post-content">
{{content}}
</section>
<footer class="post-footer">
<section class="post-meta">
This post is about: {{> tag-item}}
</section>
</footer>
{{/post}}
</article>
<aside class="comments">
{{>disqus-thread}}
</aside>
</main>
{{>addthis}}