, : http://docs.meteor.com/#ui_registerhelper, http://docs.meteor.com/#template_helpers .
, spacebars, , , : < 2 >
:
<template name="_maybeDiv_wrapInDiv">
<div>
{{> UI.contentBlock}}
</div>
</template>
<template name="_maybeDiv_noop">
{{> UI.contentBlock}}
</template>
UI.registerHelper('maybeDiv', function () {
var isBlock = this.valueOf();
if (isBlock)
return Template._maybeDiv_wrapInDiv;
else
return Template._maybeDiv_noop;
});
{{
contents
{{/maybeDiv}}