Files

12 lines
386 B
Handlebars
Raw Permalink Normal View History

2026-06-13 21:33:23 -05:00
{{#get "posts" limit="5" filter="tags:[{{post.tags}}]+id:-{{post.id}}" as |related|}}
{{#if related}}
<section class="related-wrapper gh-canvas">
<h3 class="related-title">{{t "You might also like..."}}</h3>
<div class="related-feed">
{{#foreach posts}}
{{> "loop"}}
{{/foreach}}
</div>
</section>
{{/if}}
{{/get}}