7b41ed3655a8349596f950b62f1899c16b41f04e
[ghost-theme-willow.git] / partials / post-list.hbs
1 <div class="c-post-list">
2 {{#foreach posts}}
3 <article class="c-post-list__item {{post_class}}">
4 <a class="c-post-list__image" href="{{url}}" title="{{title}}">
5 <img class="c-post-list__image__img" src="{{img_url feature_image}}" alt="{{title}}"/>
6 </a>
7
8 <h2 class="c-post-list__title">
9 <a href="{{url}}" title="{{title}}">{{title}}</a>
10 </h2>
11
12 <div class="c-post-list__meta">
13 {{date format="MMMM DD, YYYY"}}
14
15 {{#if tags}}
16 in
17 <span class="c-post-list__meta__tags">
18 {{#foreach tags}}
19 <a href="{{url}}" title="{{name}}">#{{name}}</a>
20 {{/foreach}}
21 </span>
22 {{/if}}
23 </div>
24 </article>
25 {{/foreach}}
26 </div>