You've already forked Ghost-Theme-Source
Featured posts
This commit is contained in:
16
partials/components/featured.hbs
Normal file
16
partials/components/featured.hbs
Normal file
@@ -0,0 +1,16 @@
|
||||
{{#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}}
|
||||
Reference in New Issue
Block a user