2019-04-14 18:41:25 +00:00
|
|
|
{{!-- The template below includes the markup for each post --}}
|
|
|
|
|
2020-12-23 19:22:38 +00:00
|
|
|
{{#foreach posts visibility="all"}}
|
2019-03-03 18:32:36 +00:00
|
|
|
{{#is "post"}}
|
2020-06-29 13:54:07 +00:00
|
|
|
<div class="m-recommended-slider__item glide__slide">
|
2019-03-03 18:32:36 +00:00
|
|
|
{{/is}}
|
2020-07-12 14:16:48 +00:00
|
|
|
<article class="m-article-card {{#unless feature_image}}no-picture{{/unless}} {{post_class}}">
|
2020-06-29 13:54:07 +00:00
|
|
|
<div class="m-article-card__picture">
|
2020-07-07 15:13:29 +00:00
|
|
|
<a href="{{url}}" class="m-article-card__picture-link" aria-hidden="true" tabindex="-1"></a>
|
2020-06-29 13:54:07 +00:00
|
|
|
{{#if feature_image}}
|
2020-07-10 11:18:15 +00:00
|
|
|
<img class="m-article-card__picture-background" src="{{img_url feature_image size="m"}}" loading="lazy" alt="">
|
2020-06-29 13:54:07 +00:00
|
|
|
{{/if}}
|
2020-07-07 15:13:29 +00:00
|
|
|
<a href="{{primary_author.url}}" class="m-article-card__author js-tooltip" aria-label="{{primary_author.name}}" 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}}
|
2019-10-29 09:20:52 +00:00
|
|
|
<div style="background-image: url({{img_url primary_author.profile_image size="xs"}});"></div>
|
2019-02-24 21:06:24 +00:00
|
|
|
{{else}}
|
|
|
|
<div style="background-image: url({{asset "images/default-avatar-square-small.jpg"}});"></div>
|
|
|
|
{{/if}}
|
|
|
|
</a>
|
|
|
|
{{#if featured}}
|
2020-07-07 15:13:29 +00:00
|
|
|
<a href="{{url}}" class="m-article-card__featured js-tooltip" data-tippy-content="{{t "Featured"}}" aria-label="{{t "Featured"}}">
|
|
|
|
<span class="icon-star" aria-hidden="true"></span>
|
2019-02-24 21:06:24 +00:00
|
|
|
</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}}
|
2020-07-07 15:13:29 +00:00
|
|
|
<a href="{{url}}" class="m-article-card__info-link" aria-label="{{title}}">
|
2019-02-24 21:06:24 +00:00
|
|
|
<div>
|
2019-11-21 15:48:21 +00:00
|
|
|
<h2 class="m-article-card__title js-article-card-title {{#unless feature_image}}js-article-card-title-no-image{{/unless}}" title="{{title}}">
|
|
|
|
{{title}}
|
|
|
|
</h2>
|
2019-02-24 21:06:24 +00:00
|
|
|
</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}}
|
2021-01-04 14:52:09 +00:00
|
|
|
<div class="m-recommended-slider__item glide__slide">
|
|
|
|
<div class="m-heading no-margin">
|
|
|
|
<h3>{{t "No posts found"}}</h3>
|
|
|
|
<p>
|
|
|
|
{{t "Apparently there are no posts at the moment, check again later."}}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-02-24 21:06:24 +00:00
|
|
|
{{/foreach}}
|