Source: Set twig variable to json file as an include.
Fichier _data/test.json
:
1 |
{ "name":"John", "age":30, "car":null } |
Fichier template.twig
:
1 2 3 4 5 6 7 |
{% set json %} {% include "_data/test.json" %} {% endset %} [...] <h1>{{ json }}</h1> |