forked from daleanthony/uno
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.hbs
More file actions
executable file
·23 lines (16 loc) · 724 Bytes
/
post.hbs
File metadata and controls
executable file
·23 lines (16 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{!< default}}
{{#post}}
<article class="post-container post-container--single">
<header class="post-header">
<div class="post-meta">
<time datetime="{{date format="DD MMM YYYY"}}" class="post-meta__date date">{{date format="DD MMM YYYY"}}</time> • <span class="post-meta__tags tags">{{tags prefix="on "}}</span>
<!--<span class="post-meta__author author"><img src="{{author.image}}" alt="profile image for {{author.name}}" class="avatar post-meta__avatar" /> by {{author.name}}</span>-->
</div>
<h1 class="post-title">{{{title}}}</h1>
</header>
<section class="{{post_class}}">
{{content}}
</section>
</article>
{{!-- {{> comments}} --}}
{{/post}}