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
Given a hypothetical test.hbs layout that extends blank.hbs:
{{#extend "blank"}}
{{#content "body" mode="append"}}
world
{{/content}}
{{/extend}}
And a test.hbs page that contains the following:
---
title: Test
layout: test
---
Hello
I would expect the page output to contain Hello world. Instead, it is simply Hello.
This is not limited to the "body" block or any particular mode. It's as if everything within {{#content}} attributes is ignored for extended page layouts.
The text was updated successfully, but these errors were encountered:
Given a hypothetical
test.hbs
layout that extendsblank.hbs
:And a
test.hbs
page that contains the following:I would expect the page output to contain
Hello world
. Instead, it is simplyHello
.This is not limited
to the "body" block orany particularmode
.It's as if everything within{{#content}}
attributes is ignored for extended page layouts.The text was updated successfully, but these errors were encountered: