Challenge 2 / 2
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?
Skip challenges and go to theNext Chapter