4 When a template uses inheritance and if you want to print a block multiple
5 times, use the ``block`` function:
9 <title>{% block title %}{% endblock %}</title>
11 <h1>{{ block('title') }}</h1>
13 {% block body %}{% endblock %}
15 .. seealso:: :doc:`extends<../tags/extends>`, :doc:`parent<../functions/parent>`