Is it possible to use partials as wrapper? Like the following example
I don't want to use a variable like {{> myPartial foo='bar' }}
{{> myPartial }}
foo bar
{{/ myPartial }}
<!-- ... -->
{{myPlaceholder}}
Yes. See http://handlebarsjs.com/partials.html#partial-block
{{#> myPartial }}
foo bar
{{/ myPartial }}
<!-- ... -->
{{> @partial-block }}