Well done!

You have completed Template Reuse!

Quiz Question 1 of 1

Assuming we have a Handlebars template named base.hbs that contains:

{{#block "starts"}}
This is the start
{{/block}}

{{#block "middle" }}
This is the middle
{{/block}}

{{#block "end"}}
This is the end
{{/block}}

And we had a template named oreos.hbs that contains:

{{#partial "middle"}}
Oreo cream!
{{/partial}}

{{> base.hbs}}

What would rendering oreos.hbs return?

Choose the correct answer below:

Skip Quiz Review Video