-
Notifications
You must be signed in to change notification settings - Fork 48
Open
Description
HandlebarsJS has support for partials blocks. An example would be:
myPartial:
<div>
{{> @partial-block }}
</div>
template:
{{> myPartial }}
<p>Some content here</p>
{{/myPartial}}
Would render:
<div>
<p>Some content here</p>
</div>
When I try doing this I get the error: pybars._compiler.PybarsError: Error at character 25 of line 34 near {{/myPartial}}
I assume the reason I'm getting the error is because this isn't supported yet?
errnesto and william0bra
Metadata
Metadata
Assignees
Labels
No labels