forked from yevi.org/Ghost_Ruby_Theme
15 lines
486 B
Handlebars
15 lines
486 B
Handlebars
{{#get "posts" limit="3" filter="tags:[{{post.tags}}]+id:-{{post.id}}"
|
|
include="tags,authors" as |related|}}
|
|
{{#if related}}
|
|
<section class="related-posts">
|
|
<h3 class="related-title">
|
|
<span class="text">You might also like...</span>
|
|
</h3>
|
|
<div class="post-feed">
|
|
{{#foreach related}}
|
|
{{> loop}}
|
|
{{/foreach}}
|
|
</div>
|
|
</section>
|
|
{{/if}}
|
|
{{/get}} |