Lines Matching refs:Handlebars

8 Handlebars.js
11 Handlebars.js is an extension to the [Mustache templating
13 Handlebars.js and Mustache are both logicless templating languages that
16 Checkout the official Handlebars docs site at
26 In general, the syntax of Handlebars.js templates is a superset
30 Once you have a template, use the `Handlebars.compile` method to compile
38 var template = Handlebars.compile(source);
57 Handlebars allows templates to be precompiled and included as javascript code rather than the handl…
59 Differences Between Handlebars.js and Mustache
61 Handlebars.js adds a couple of additional features to make writing
74 There are a few Mustache behaviors that Handlebars does not implement.
75 - Handlebars deviates from Mustache slightly in that it does not perform recursive lookup by defaul…
76 - The optional Mustache-style lambdas are not supported. Instead Handlebars provides its own lambda…
83 Handlebars has been designed to work in any ECMAScript 3 environment. This includes
98 In a rough performance test, precompiled Handlebars.js templates (in
99 the original version of Handlebars.js) rendered in about half the
105 rewritten Handlebars (current version) is faster than the old version,
120 Handlebars in the Wild
124 and [@doowb](https://github.com/doowb), is a static site generator that uses Handlebars.js
127 * [CoSchedule](http://coschedule.com) An editorial calendar for WordPress that uses Handlebars.js
128 * [dashbars](https://github.com/pismute/dashbars) A modern helper library for Handlebars.js.
129 * [Ember.js](http://www.emberjs.com) makes Handlebars.js the primary way to
137 * [hbs](http://github.com/donpark/hbs): An Express.js view engine adapter for Handlebars.js,
140 renderer for Handlebars.js.
142 for anyone who would like to try out Handlebars.js in their browser.
144 Handlebars.js with [jQuery](http://jquery.com/).
147 * [Marionette.Handlebars](https://github.com/hashchange/marionette.handlebars) adds support for Han…
149 supports Handlebars.js as one of its template plugins.
150 * [SproutCore](http://www.sproutcore.com) uses Handlebars.js as its main
154 …com/blakeembrey/dombars) is a DOM-based templating engine built on the Handlebars parser and runti…
155 * [promised-handlebars](https://github.com/nknapp/promised-handlebars) is a wrapper for Handlebars
156 …hnology/just-handlebars-helpers) A fully tested lightweight package with common Handlebars helpers.
163 Have a project using Handlebars? Send us a [pull request][pull-request]!
167 Handlebars.js is released under the MIT license.