rittenhop-ghost/content/themes/Dawn-custom/partials/related-posts.hbs

12 lines
378 B
Handlebars
Raw Normal View History

2024-08-29 19:55:56 -04: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">You might also like...</h3>
<div class="related-feed">
{{#foreach posts}}
{{> "loop"}}
{{/foreach}}
</div>
</section>
{{/if}}
{{/get}}