and ``.../templates/default`` in this order. The ``page.twig`` template,
stored in ``.../templates/default`` reads as follows:
-.. node-block:: jinja
+.. code-block:: jinja
{# page.twig #}
{% extends "layout.twig" %}
``.../templates/mysite``. And if you want to extend the original template, you
might be tempted to write the following:
-.. node-block:: jinja
+.. code-block:: jinja
{# page.twig in .../templates/mysite #}
{% extends "page.twig" %} {# from .../templates/default #}
extend a template with an overriding version of itself we can reference its
parent's full, unambiguous template path in the extends tag:
-.. node-block:: jinja
+.. code-block:: jinja
{# page.twig in .../templates/mysite #}
{% extends "default/page.twig" %} {# from .../templates #}