Added all theme files
[ghost-theme-willow.git] / partials / articles.hbs
1 {{#foreach posts}}
2 <article class="post-listed {{post_class}}">
3 <a class="post-image" href="{{url}}" title="{{title}}">
4 <img src="{{image}}" alt="{{title}}"/>
5 </a>
6
7 <h2>
8 <a href="{{url}}" title="{{title}}">{{title}}</a>
9 </h2>
10
11 <div class="post-meta">
12 <span class="time">
13 {{date format="DD MMMM, YYYY"}}
14 </span>
15
16 {{#if tags}}
17 in
18 <span class="tags">
19 {{#foreach tags}}
20 <a href="{{url}}" title="{{name}}">#{{name}}</a>
21 {{/foreach}}
22 </span>
23 {{/if}}
24 </div>
25 </article>
26 {{/foreach}}
27 {{pagination}}