-
Notifications
You must be signed in to change notification settings - Fork 24
/
tag.hbs
34 lines (32 loc) · 1.08 KB
/
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
27
28
29
30
31
32
33
34
{{!< default}}
{{#tag}}
<header class="tag-header">
<h1 class="tag-title">{{name}}</h1>
{{#if feature_image}}<img class="tag-image" src="{{image_url}}">{{/if}}
<p class="tag-description">{{description}}</p>
</header>
{{/tag}}
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<h1 class="post-title">
<a href="{{url}}">{{{title}}}</a>
</h1>
<section class="post-meta">
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="MMMM DD, YYYY"}}</time>
{{#has tag="gallery"}}<i class="header-icon icon-gallery"></i>{{/has}}
<span class="tags">{{tags}}</span>
</section>
</header>
<a class="read-more" href="{{url}}">
{{^has tag="gallery"}}
<section class="post-excerpt">
<p>{{excerpt words="30"}}...</p>
</section>
{{/has}}
</a>
</article>
{{/foreach}}
</div>
{{! Previous/next page links - displayed on every page }}
{{pagination}}