mirror of
https://github.com/TryGhost/Ruby.git
synced 2024-10-30 04:48:33 +02:00
12 lines
404 B
Handlebars
12 lines
404 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">{{t 'You might also like...'}}</span></h3>
|
|
<div class="post-feed">
|
|
{{#foreach related}}
|
|
{{> loop}}
|
|
{{/foreach}}
|
|
</div>
|
|
</section>
|
|
{{/if}}
|
|
{{/get}} |