Unlock this challenge:
How can you include a base layout with a header and a footer in your Twig template?
By using the {% include 'base.html.twig' %} directive
{% include 'base.html.twig' %}
By using the {% layout 'base.html.twig' %} directive
{% layout 'base.html.twig' %}
By using the {% inherit 'base.html.twig' %} directive
{% inherit 'base.html.twig' %}
By using the {% extends 'base.html.twig' %} directive