forked from hoist/hoist-ghost
-
Notifications
You must be signed in to change notification settings - Fork 14
/
tag.hbs
26 lines (19 loc) · 784 Bytes
/
tag.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
{{!< default}}
<header>
<h3>Topic : {{tag.name}}</h3>
</header>
{{! Each post will be output using this markup }}
{{#foreach posts}}
<article class="{{post_class}}">
<a href="{{url}}" class="Article-Link">
<h2 class="post-title">{{{title}}}</h2>
<section class="post-excerpt">
<p>{{excerpt}}…</p>
</section>
</a>
<span class="post-meta">
<img src="{{author.image}}" class="profileimage"> <a href="{{#author}}{{url}}{{/author}}">{{author.name}}</a> {{tags prefix="on "}} | <time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMM YYYY"}}</time>
</span>
</article>
{{/foreach}}
{{pagination}}