basho/partials/sections.hbs
2025-06-11 22:59:02 +10:00

17 lines
685 B
Handlebars

{{#match @custom.tags_for_special_section}}
{{#get "posts" limit="6" filter="tag:[{{@custom.tags_for_special_section}}]+feature_image:-null" include="authors" as |special_posts|}}
{{#if special_posts}}
{{>related label=(t "{start-bold}Recommended{end-bold}" start-bold="<span>" end-bold="</span>")}}
{{/if}}
{{/get}}
{{else}}
{{#foreach posts limit="1"}}
{{#if primary_tag}}
{{#get "posts" limit="6" filter="tag:{{primary_tag.slug}}+id:-{{id}}+feature_image:-null" include="authors" as |special_posts|}}
{{#if special_posts}}
{{>related label=(t "{start-bold}Recommended{end-bold}" start-bold="<span>" end-bold="</span>")}}
{{/if}}
{{/get}}
{{/if}}
{{/foreach}}
{{/match}}