2019-04-14 18:41:25 +00:00
|
|
|
{{!-- The template below includes the markup for each post --}}
|
|
|
|
|
2019-02-24 21:06:24 +00:00
|
|
|
{{#foreach posts}}
|
2019-03-03 18:32:36 +00:00
|
|
|
{{#is "post"}}
|
2019-03-17 16:16:17 +00:00
|
|
|
<div class="m-recommended-slider__item">
|
2019-03-03 18:32:36 +00:00
|
|
|
{{/is}}
|
2019-02-24 21:06:24 +00:00
|
|
|
{{#if feature_image}}
|
|
|
|
<article class="m-article-card {{post_class}}">
|
2019-10-27 10:43:31 +00:00
|
|
|
<div class="m-article-card__picture lozad" data-background-image="{{feature_image}}">
|
2019-02-24 21:06:24 +00:00
|
|
|
{{else}}
|
|
|
|
<article class="m-article-card no-picture {{post_class}}">
|
|
|
|
<div class="m-article-card__picture">
|
|
|
|
{{/if}}
|
|
|
|
<a href="{{url}}" class="m-article-card__picture-link" aria-label="Article"></a>
|
2019-08-17 18:34:39 +00:00
|
|
|
<a href="{{primary_author.url}}" class="m-article-card__author js-tooltip" aria-label="Authors" data-tippy-content="{{t "Posted by"}} {{primary_author.name}} {{authors autolink="false" from="2" prefix=(t "Among with") separator=" , "}}">
|
2019-02-24 21:06:24 +00:00
|
|
|
{{#if primary_author.profile_image}}
|
|
|
|
<div style="background-image: url({{primary_author.profile_image}});"></div>
|
|
|
|
{{else}}
|
|
|
|
<div style="background-image: url({{asset "images/default-avatar-square-small.jpg"}});"></div>
|
|
|
|
{{/if}}
|
|
|
|
</a>
|
|
|
|
{{#if featured}}
|
2019-08-17 18:34:39 +00:00
|
|
|
<a href="{{url}}" class="m-article-card__featured js-tooltip" data-tippy-content="{{t "Featured"}}" aria-label="Article">
|
2019-02-24 21:06:24 +00:00
|
|
|
<span class="icon-star"></span>
|
|
|
|
</a>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
{{#if primary_tag}}
|
|
|
|
<div class="m-article-card__info">
|
|
|
|
<a href="{{primary_tag.url}}" class="m-article-card__tag">{{primary_tag.name}}</a>
|
|
|
|
{{else}}
|
|
|
|
<div class="m-article-card__info no-tag">
|
|
|
|
{{/if}}
|
|
|
|
<a href="{{url}}" class="m-article-card__info-link">
|
|
|
|
<div>
|
|
|
|
<h2 class="m-article-card__title">{{title}}</h2>
|
|
|
|
</div>
|
|
|
|
<div class="m-article-card__timestamp">
|
2019-03-17 16:16:17 +00:00
|
|
|
<span>{{date published_at timeago="true"}}</span>
|
2019-02-24 21:06:24 +00:00
|
|
|
<span>•</span>
|
2019-08-15 14:40:46 +00:00
|
|
|
<span>{{reading_time minute=(t "1 min read") minutes=(t "% min read")}}</span>
|
2019-02-24 21:06:24 +00:00
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</article>
|
2019-03-03 18:32:36 +00:00
|
|
|
{{#is "post"}}
|
2019-03-17 16:16:17 +00:00
|
|
|
</div>
|
2019-03-03 18:32:36 +00:00
|
|
|
{{/is}}
|
2019-02-24 21:06:24 +00:00
|
|
|
{{else}}
|
2019-05-26 12:56:54 +00:00
|
|
|
<header class="m-heading no-margin">
|
2019-08-15 14:40:46 +00:00
|
|
|
<h3>{{t "No posts found"}}</h3>
|
2019-02-24 21:06:24 +00:00
|
|
|
<p>
|
2019-08-15 14:40:46 +00:00
|
|
|
{{t "Apparently there are no posts at the moment, check again later."}}
|
2019-02-24 21:06:24 +00:00
|
|
|
</p>
|
|
|
|
</header>
|
|
|
|
{{/foreach}}
|