2016-05-08 08:50:20 +00:00
|
|
|
{{!-- Previous/next page links - only displayed on page 2+ --}}
|
2014-07-21 16:20:36 +00:00
|
|
|
<div class="extra-pagination inner">
|
|
|
|
{{pagination}}
|
|
|
|
</div>
|
|
|
|
|
2016-05-08 08:50:20 +00:00
|
|
|
{{!-- This is the post loop - each post will be output using this markup --}}
|
2014-07-21 16:20:36 +00:00
|
|
|
{{#foreach posts}}
|
|
|
|
<article class="{{post_class}}">
|
|
|
|
<header class="post-header">
|
2016-05-08 09:01:25 +00:00
|
|
|
<h2 class="post-title"><a href="{{url}}">{{title}}</a></h2>
|
2014-07-21 16:20:36 +00:00
|
|
|
</header>
|
|
|
|
<section class="post-excerpt">
|
2014-09-25 13:41:04 +00:00
|
|
|
<p>{{excerpt words="26"}} <a class="read-more" href="{{url}}">»</a></p>
|
2014-07-21 16:20:36 +00:00
|
|
|
</section>
|
|
|
|
<footer class="post-meta">
|
2015-05-15 21:13:14 +00:00
|
|
|
{{#if author.image}}<img class="author-thumb" src="{{author.image}}" alt="{{author.name}}" nopin="nopin" />{{/if}}
|
2014-07-22 22:33:54 +00:00
|
|
|
{{author}}
|
2014-09-25 13:41:04 +00:00
|
|
|
{{tags prefix=" on "}}
|
2016-05-08 09:01:25 +00:00
|
|
|
<time class="post-date" datetime="{{date format="YYYY-MM-DD"}}">{{date format="DD MMMM YYYY"}}</time>
|
2014-07-21 16:20:36 +00:00
|
|
|
</footer>
|
|
|
|
</article>
|
|
|
|
{{/foreach}}
|
|
|
|
|
2016-05-08 08:50:20 +00:00
|
|
|
{{!-- Previous/next page links - displayed on every page --}}
|
2014-07-22 22:33:54 +00:00
|
|
|
{{pagination}}
|