handlebars-helper-each

Handlebars each helper, sync and async.
Install
Install with npm:
$ npm install --save handlebars-helper-each
Usage
You can use this helper synchronously with any handlebars application. To use it asynchronously you'll need to use a templates-based application. This example shows how to use the helper with assemble.
var assemble = require('assemble');
var app = assemble();
app.helper('each', require('handlebars-helper-each'));
app.page('foo.html', {content: 'this is foo', data: {title: 'Foo'}});
app.page('bar.html', {content: 'this is bar', data: {title: 'Bar'}});
app.page('baz.html', {content: 'this is baz', data: {title: 'Baz'}});
Then add another template with something like the following:
<ul>
{{#pages}}
{{#each items as |view|}}
<!-- "item" is view (vinyl file), so you can
get any file properties you need -->
<li><a href="{{item.path}}">{{item.data.title}}</a></li>
{{/each}}
{{/pages}}
</ul>
Renders to:
<ul>
<li><a href="foo.html">Foo</a></li>
<li><a href="bar.html">Bar</a></li>
<li><a href="baz.html">Baz</a></li>
</ul>
About
Related projects
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Please read the contributing guide for advice on opening issues, pull requests, and coding standards.
Building docs
(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)
To generate the readme, run the following command:
$ npm install -g verbose/verb
Running tests
Install dev dependencies:
$ npm install && npm test
Author
Jon Schlinkert
License
Copyright © 2017, Jon Schlinkert.
Released under the MIT license.
This file was generated by verb-generate-readme, v0.4.1, on January 25, 2017.