Listing 13.8. Widok layout.html.twig
{% extends '::base.html.twig' %}

{% block body %}
<section>
    {% render 'MyNovelBundle:Default:menu' %}
    <article>
        {% block contents %}
        {% endblock %}
    </article>
</section>

{% endblock %}