Files
2019-06-30 14:48:27 +02:00

17 lines
329 B
Plaintext

--TEST--
"include" function
--TEMPLATE--
{% extends "base.twig" %}
{% block content %}
{{ parent() }}
{% endblock %}
--TEMPLATE(base.twig)--
{% block content %}
{{ include("foo.twig") }}
{% endblock %}
--DATA--
return []
--EXCEPTION--
Twig\Error\LoaderError: Template "foo.twig" is not defined in "base.twig" at line 3.