-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathtag.hbs
30 lines (21 loc) · 856 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
27
28
29
30
{{!< default}}
{{> content-header}}
<section class="tag-info container">
{{#if tag.feature_image}}
<img class="tag-info__image" src="{{tag.feature_image}}" alt="Image for {{tag.name}} tag" />
{{/if}}
<br><br>
<span class="tag-info__intro">Posts Tagged:</span>
<h1 class="tag-info__name">{{tag.name}}</h1>
<p class="tag-info__description">
{{tag.description}} Subscribe to this tag’s <a href="{{@site.url}}/tag/{{tag.slug}}/rss/">RSS feed</a> to get new {{tag.name}} posts as they’re written.
</p>
<span class="tag-info__meta">
{{plural pagination.total empty='There are no articles with this tag … how did you find it?!' singular='A <strong>% post</strong> collection:' plural='A <strong>% post</strong> collection:'}}
</span>
</span>
<br><br>
</section>
<main class="content">
{{> "loop"}}
</main>