c6e4798fcebc0d31c1394c6ed0c2050e59adf737
[editorial.git] / tag.hbs
1 {{!< default}}
2 {{!-- The tag above means: insert everything in this file
3 into the {body} of the default.hbs template --}}
4
5 {{!-- Main --}}
6 <main id="main">
7
8 {{!-- Tag info --}}
9 {{#tag}}
10 <header class="tag-header">
11 <h1><a href="{{url}}">{{name}}</a></h1>
12 {{#if description}}
13 <p class="content">{{description}}</p>
14 {{else}}
15 <p>A collection of {{plural ../pagination.total empty='posts' singular='% post' plural='% posts'}}</p>
16 {{/if}}
17 {{#if feature_image}}
18 <a href="{{url}}" class="image main"><img src="{{img_url feature_image}}" alt="{{title}}" /></a>
19 {{/if}}
20 </header>
21 {{/tag}}
22
23 {{!-- Posts --}}
24 <section class="posts">
25
26 {{#foreach posts}}
27 <article>
28 <header>
29 <span class="date">{{date format="MMM D, YYYY"}}</span>
30 <h2><a href="{{url}}">{{title}}</a></h2>
31 </header>
32 {{#if feature_image}}
33 <a href="{{url}}" class="image fit"><img src="{{img_url feature_image}}" alt="{{title}}" /></a>
34 {{/if}}
35 <p>{{excerpt words="33"}}</p>
36 <ul class="actions special">
37 <li><a href="{{url}}" class="button">Full Story</a></li>
38 </ul>
39 </article>
40 {{/foreach}}
41
42 </section>
43
44 {{!-- Pagination --}}
45 {{pagination}}
46
47 </main>