I have an extensive news source (JSON), but I need to show only first three news to the user at home page. Is there a way to discard from the fourth onwards? Something like:
{{#each news}}
{{ if index <= 3 }}
<h3>{{title}} - {{date}}</h3>
<p>{{post}}</p>
{{/if}}
{{/each}}
Is it possible with Handlebars only or do I need to use Javascript?