Files
palina-theme/partials/related-posts.hbs
Sebastian Krüger b696c36de5
All checks were successful
Deploy Theme / deploy (push) Successful in 15s
style: update related posts heading and include tags for post cards
2026-02-22 09:39:05 +01:00

13 lines
536 B
Handlebars

{{#get "posts" filter="tags:{{primary_tag.slug}}+id:-{{id}}" limit="3" include="tags" as |related_posts|}}
{{#if related_posts}}
<section class="mt-16 pt-12 border-t border-[var(--bg-tertiary)]">
<h3 class="text-3xl font-bold mb-8 text-center">You might like</h3>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">
{{#foreach related_posts}}
{{> "post-card"}}
{{/foreach}}
</div>
</section>
{{/if}}
{{/get}}