Unlock this challenge:
Check out the following template:
{% extends 'base.html.twig' %} <h1>What will happen?</h1>
Where, inside of base.html.twig, will that <h1> tag be rendered?
base.html.twig
<h1>
It will be rendered at the bottom of the base.html.twig template.
It won't! Twig will panic and give you a big error!
Because it's not surrounded in a {% block %}, it will be rendered inside of the default body block.
{% block %}
body
It will be rendered inside of the <body> tag.
<body>