Get the latest featured post only

Hello all :slight_smile:
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}}

Found out how:

{{#get "posts" filter="featured:true" limit="1"}}