2020-11-06 00:27:57 +01:00
|
|
|
{{!-- Gest the 3 most recent related posts --}}
|
|
|
|
{{#get "posts" limit="3" filter="id:-{{post.id}}+tags:[{{post.tags}}]" include="tags" as |related|}}
|
2020-11-04 23:47:36 +01:00
|
|
|
<h4>Similar posts</h4>
|
|
|
|
{{#foreach related}}
|
|
|
|
<article class="{{post_class}}">
|
|
|
|
<a class="mind-post-card-sidebar_main" href="{{url}}">
|
2020-11-04 23:43:30 +01:00
|
|
|
|
2020-11-04 23:47:36 +01:00
|
|
|
{{#if feature_image}}
|
|
|
|
<img class="mind-post-card-sidebar_feature-image" src="{{img_url feature_image size="s"}}"
|
|
|
|
alt="Feature Image"/>
|
|
|
|
{{/if}}
|
|
|
|
<header class="mind-post-card-sidebar_header">
|
|
|
|
<p class="mind-post-card-sidebar_meta"><span
|
|
|
|
class="mind-post-card-sidebar_tag">{{primary_tag.name}}</span> •
|
|
|
|
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date
|
|
|
|
format="DD MMMM YYYY"}}</time>
|
|
|
|
</p>
|
|
|
|
<h5>{{title}}</h5>
|
|
|
|
</header>
|
|
|
|
</a>
|
|
|
|
</article>
|
|
|
|
{{/foreach}}
|
2020-08-18 18:20:39 +02:00
|
|
|
{{else}}
|
2020-11-04 23:47:36 +01:00
|
|
|
<h4>No related posts</h4>
|
2020-08-18 18:20:39 +02:00
|
|
|
{{/get}}
|