-
-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
container.html:
<div>
<block name="grid-children">
</block>
</div>column.html:
<div>
<block name="col-children">
</block>
</div>index.html:
The following works fine as expected:
<extends src="./container.html">
<block name="grid-children"> -->
<div>this works</div>
</block>
</extends>But the following breaks with Error: [posthtml-extend] Unexpected block "col-children":
<extends src="./container.html">
<block name="grid-children"> -->
<extends src="./column.html">
<block name="grid-children">
<div>this breaks</div>
</block>
</extends>
</block>
</extends>Metadata
Metadata
Assignees
Labels
No labels