Handlebars template for Ember.js objects grouped by two
问题 I have my data in the collection and I need to render them into the template. How can I achieve the result when the data is grouped by two? I need to sort them like this: ._______________________ | 1 | 3 | 5 |___|___|_______________ | 2 | 4 | and so on... |___|___|_______________ I have created vertical div element for each 1+2, 3+4, ... pair to style the items like this. How can I render the data in to such grid with handlebars? All I can do is this: {{#each App.myController}} ... render