Lines Matching refs:helper
203 …ate. You can use them alone in a {{mustache}}, pass them to a Handlebars helper, or use them as va…
236 Handlebars expressions with a helper. In this case we're using the upper helper
268 You can use the if helper to conditionally render a block. If its argument returns false, null, "" …
295 You can use the unless helper as the inverse of the if helper. Its block will be rendered if the ex…
306 You can iterate over a list using the built-in each helper. Inside the block, you can use {{this}} …
379 The #each helper (php only) also has the ability to slice the data
417 You can shift the context for a section of a template by using the built-in with block helper.
565 This helper return handlebars expression as is. The expression will not be parsed
658 To create your own helper, use the method: `Handlebars::addHelper($name, $callback)`
660 The following helper will UPPERCASE a string
670 And now we can use the helper like this:
680 In Handlebars JS v1.1, data variables `@first` and `@last` were added for the #each helper. Due to …