Unlock this challenge:
Suppose you have the following template:
{% extends 'base.html.twig' %} {% block banana %} <h1>Mmmm, bananas... 🍌</h1> {% endblock %}
But... the base.html.twig template does not have a block called banana! What do you think will happen?
base.html.twig
banana
The page will render like normal, but with the banana block appended to the bottom of the page, since it wasn't rendered anywhere else.
An error, because Twig will not be able to figure out where to render the <h1> tag.
<h1>
The page will render like normal, but the content of the banana block won't be displayed anywhere.