Added tag page
[editorial.git] / partials / tag-card.hbs
1 <article class="post-card {{post_class}}{{#unless feature_image}} no-image{{/unless}}">
2 {{#if feature_image}}
3 <a class="post-card-image-link" href="{{url}}">
4 <div class="post-card-image" style="background-image: url({{feature_image}})"></div>
5 </a>
6 {{/if}}
7 <div class="post-card-content">
8 <a class="post-card-content-link" href="{{url}}">
9 <header class="post-card-header">
10 <h2 class="post-card-title">{{name}}</h2>
11 </header>
12 <section class="post-card-excerpt">
13 <p>{{description}}</p>
14 <p>A collection of {{plural count.posts empty='posts' singular='% post' plural='% posts'}}</p>
15 </section>
16 </a>
17 </div>
18 </article>