Hello all
Quick question, how do I get only the latest featured post?
Thanks,
Kaique
{{#get "posts" include="all"}}
{{#foreach posts}}
{{#if featured}}
<a href="{{url}}">
{{title}}
</a>
{{/if}}
{{/foreach}}
{{/get}}