Lines Matching refs:be

25 that keep the view and the code separated like we all know they should be.
78 The string above can be used as is in your PHP file, or be put in a file (ie: */templates/main.tpl*), to be called upon rendering.
109 # We'll use $handlebars throughout this the examples, assuming the will be all set this way
122 The simplest way to assign data is to create an Array model. The model will contain all the data that will be passed to the template.
153 ***$template*** : Template can be the name of the file or a string containing the handlebars/html.
274 This part will be shown if it is active
276 This part will be shown if it is valid
278 This part will be shown if isActive and isValid are both "falsy" values
295 You can use the unless helper as the inverse of the if helper. Its block will be rendered if the expression returns a falsy value.
456 This part will be shown if it is active
458 This part will be shown if it is valid
460 This part will be shown if isActive and isValid are both "falsy" values
565 This helper return handlebars expression as is. The expression will not be parsed
590 Variable and blocks can still be used
681 not being backwards compatible, these data variables are disabled by default and must be enabled manually.
701 The output will be
710 The output will be
723 The output will be
731 For example, given the following template and the following data, the output will be different depending on if data
754 When `enableDataVariables` is `false`, existing behavior is not changed where some variables will be return.
762 variables defined in the data and any data variable prefixed with `@` that is unknown will be blank.