forked from raivis-vitols/ghost-theme-willow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.hbs
29 lines (25 loc) · 922 Bytes
/
index.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{{!< default}}
<div class="c-post-list">
{{#foreach posts}}
<article class="c-post-list__item {{post_class}}">
<a class="c-post-list__image" href="{{url}}" title="{{title}}">
<img class="c-post-list__image__img" src="{{image}}" alt="{{title}}"/>
</a>
<h2 class="c-post-list__title">
<a href="{{url}}" title="{{title}}">{{title}}</a>
</h2>
<div class="c-post-list__meta">
{{date format="MMMM DD, YYYY"}}
{{#if tags}}
in
<span class="c-post-list__meta__tags">
{{#foreach tags}}
<a href="{{url}}" title="{{name}}">#{{name}}</a>
{{/foreach}}
</span>
{{/if}}
</div>
</article>
{{/foreach}}
</div>
{{pagination}}