Back to course

Twig Inheritance

Symfony 0 to Hero: The Complete 2026 Guide

Layouts and Blocks

Avoid code repetition by using base.html.twig.

Define a block in base: {% block body %}{% endblock %}

In your page: {% extends 'base.html.twig' %} {% block body %}...content...{% endblock %}