You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here block.super does not include anything. It's as if it includes the content from template-base.stencil instead of its immediate parent template-main.stencil. I have used block.super before, but never with multiple levels of inheritance.
Is this a bug, or is this simply not supported?
The text was updated successfully, but these errors were encountered:
It should fix the issue you described, now when doing {{ block.super }} you should get the block of template you extend, before that base template was always used due to some implementation details.
From
template-base.stencil
:From
template-main.stencil
:From
page.stencil
:Here
block.super
does not include anything. It's as if it includes the content fromtemplate-base.stencil
instead of its immediate parenttemplate-main.stencil
. I have usedblock.super
before, but never with multiple levels of inheritance.Is this a bug, or is this simply not supported?
The text was updated successfully, but these errors were encountered: