Handlebars.js - loop an array excluding the first element? Handlebars.js - loop an array excluding the first element? express express

Handlebars.js - loop an array excluding the first element?


Turns out it's as easy as:

{{#each foo}}  {{#if @first}}    <div class="item active">      <div class="foo">{{this}}</div>    </div>  {{else}}    <div class="item">      <div class="foo">{{this}}</div>    </div>  {{/if}}{{/each}}


Use the following code:

{{#each foo}}  <div class="item {{#if @first}}active{{/if}}">    <div class="foo">{{this}}</div>  </div>{{/each}}