ghost-theme-sd.ai/partials/components/featured.hbs
Sodbileg Gansukh 05eefe6aeb Featured posts
2023-07-10 13:31:23 +08:00

16 lines
570 B
Handlebars

{{#if showFeatured}}
{{#get "posts" filter="featured:true" limit="4" as |featured|}}
{{#if featured}}
<section class="gh-featured gh-outer">
<div class="gh-featured-inner gh-inner">
<h2 class="gh-featured-title">Featured</h2>
<div class="gh-featured-feed">
{{#foreach featured}}
{{> "loop"}}
{{/foreach}}
</div>
</div>
</section>
{{/if}}
{{/get}}
{{/if}}