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>
container.html:
column.html:
index.html:
The following works fine as expected:
But the following breaks with
Error: [posthtml-extend] Unexpected block "col-children":