Files
DF-Ghost-Dawn-Theme/partials/featured-posts.hbs
T

33 lines
1.2 KiB
Handlebars
Raw Normal View History

2026-06-13 21:33:23 -05:00
{{#get "posts" filter="featured:true" limit="15" as |featured|}}
{{#if featured}}
<div class="gh-outer">
<section class="featured-wrapper gh-inner">
{{#if @custom.featured_title}}
<h2 class="featured-title">{{@custom.featured_title}}</h2>
{{/if}}
<div class="featured-feed owl">
{{#foreach featured}}
<article class="{{post_class}}">
<div class="u-placeholder horizontal">
{{#if feature_image}}
<img
class="u-object-fit"
srcset="{{> srcset}}"
sizes="(min-width: 992px) calc((92vw - 60px) / 3), (min-width: 768px) calc((92vw - 30px) / 2), 92vw"
src="{{img_url feature_image size="m"}}"
alt="{{title}}"
>
{{/if}}
</div>
<h3 class="post-title">{{title}}</h3>
<a class="u-permalink" href={{url}} aria-label="{{title}}"></a>
</article>
{{/foreach}}
</div>
</section>
</div>
{{/if}}
{{/get}}