2017-05-15 20:03:47 +00:00
|
|
|
<div class="post-feed">
|
|
|
|
{{!-- This is the post loop - each post will be output using this markup --}}
|
|
|
|
{{#foreach posts}}
|
|
|
|
<article class="post-card {{post_class}}">
|
|
|
|
{{#if feature_image}}
|
|
|
|
<a class="post-card-image-link" href="{{url}}">
|
|
|
|
<div class="post-card-image" style="background-image: url({{feature_image}})"></div>
|
|
|
|
</a>
|
|
|
|
{{/if}}
|
|
|
|
<div class="post-card-content">
|
|
|
|
<a class="post-card-content-link" href="{{url}}">
|
|
|
|
<header class="post-card-header">
|
|
|
|
<h2 class="post-card-title">{{title}}</h2>
|
|
|
|
</header>
|
|
|
|
<section class="post-card-excerpt">
|
|
|
|
<p>{{excerpt words="33"}}</p>
|
|
|
|
</section>
|
|
|
|
</a>
|
|
|
|
<footer class="post-card-meta">
|
|
|
|
{{#if author_image}}<img class="author-thumb" src="{{author_image}}" alt="{{author.name}}" nopin="nopin" />{{/if}}
|
|
|
|
{{author}}
|
|
|
|
<time class="post-card-date" datetime="{{date format="YYYY-MM-DD"}}">{{date format="DD MMMM YYYY"}}</time>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
{{/foreach}}
|
2014-07-21 16:20:36 +00:00
|
|
|
</div>
|