- Building Our Model 7:46
- In Memory DAO implementation 1 question
- Template Reuse and Static Resources 11:04
- Template Reuse 1 question
- Adding to and Iterating a List 13:43
- Redirecting 1 objective
- Using Filters and Request Attributes 8:25
- Using filters 3 questions
- Accessing Specific Items 12:54
- Details 8:34
- URL Parameters 2 questions
- Messaging 6:10
- Build Your Own Flash Messages 14:13
- Review Messaging 3 questions
- Request Handled 1:39
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: