These will become variables available to the twig template files
xxxxxxxxxx
{ "text": "demo", "items": [{ "name": "A" }, { "name": "B" }] }
Only the first file is compiled, but other files can be included or extended
<h1>{{ text | title }}</h1>
<ul>
{% for item in items %}
<li>{{ item.name }}</li>
{% endfor %}
</ul>
<h1>Demo</h1>
<li>A</li>
<li>B</li>