Challenge 1 / 1
Suppose I have a Twig block in a template that has some content in it:
{% block myBlock %}
Some content here!
{% endblock %}
I now want to extend this block inside a child template but without it removing the parent block's content. How can I do that?
Skip challenges and go to theNext Chapter