mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-12 10:26:32 +00:00
12 lines
297 B
Plaintext
12 lines
297 B
Plaintext
--TEST--
|
|
"include" function
|
|
--TEMPLATE--
|
|
{{ include("included.twig", ignore_missing = true) }}
|
|
NOT DISPLAYED
|
|
--TEMPLATE(included.twig)--
|
|
{{ include("DOES NOT EXIST") }}
|
|
--DATA--
|
|
return []
|
|
--EXCEPTION--
|
|
Twig\Error\LoaderError: Template "DOES NOT EXIST" is not defined in "included.twig" at line 2.
|