forked from epistrephein/Steam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtag.hbs
17 lines (17 loc) · 762 Bytes
/
tag.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{!< default}}
<main class="content" role="main">
<h3 class="posts-tagged"><i class="fa fa-fw fa-tag"></i> {{tag.name}}</h3>
{{#foreach posts}}
<article class="preview">
<header>
<h1 class="post-title"><a href="{{url}}">{{{title}}}</a></h1>
<div class="post-meta"><time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time></div>
</header>
<section class="post-excerpt">
<a class="excerptlink" href="{{url}}"><p>{{excerpt words="90"}}…</p></a>
<p class="readmore"><a href="{{url}}">Keep reading <i class="fa fa-angle-double-right" style="padding-left: 5px;"></i></a></p>
</section>
</article>
{{/foreach}}
{{pagination}}
</main>