Added robots file
[ghost-theme-work.git] / partials / loop.hbs
1 {{!-- This is the post loop - each post will be output using this markup --}}
2 {{#foreach posts}}
3 <article class="{{post_class}}">
4 <div class="post-meta">
5 <time class="post-date" datetime="{{date format="YYYY-MM-DD"}}">{{date format="DD MMMM YYYY"}}</time>
6 <div class="tags">{{tags}}</div>
7 </div>
8 <h2 class="post-title"><a href="{{url}}" title="{{title}}">{{title}}</a></h2>
9 <div class="content-holder">
10 {{#if feature_image}}
11 <a href="{{url}}" title="{{title}}" class="img-holder">
12 <img src="{{img_url feature_image size="m"}}" alt="{{title}}">
13 </a>
14 {{/if}}
15 <p>
16 {{excerpt words="44"}}
17 </p>
18 </div>
19 <a class="read-more btn" href="{{url}}" title="{{title}}">{{t "Read more"}}</a>
20 <hr>
21 </article>
22 {{/foreach}}