Added excerpt to index view
[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 {{excerpt}} <br />
14
15 {{date format="MMMM DD, YYYY"}}
16
17 {{#if tags}}
18 in
19 <span class="c-post-list__meta__tags">
20 {{#foreach tags}}
21 <a href="{{url}}" title="{{name}}">#{{name}}</a>
22 {{/foreach}}
23 </span>
24 {{/if}}
25 </div>
26 </article>
27 {{/foreach}}
28 </div>