mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-08 16:36:58 +00:00
17 lines
329 B
Plaintext
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.
|