## How to use
Plugin to integrate Twig with the Lithium two step rendering View layer.
First enable the plugin with
{{{
Libraries::add('li3_twig');
}}}
From your controller return arrays with properties that should be accessible in the Twig template.
{{{
public function myMethod() {
return array('name' => 'Raymond Julin');
}
}}}
Access your fields like this in the template later.
Note that the `this` is an automatically added reference to the Environment and under it you can lazy load
helpers like in regular lithium templates.
{{{
<h1>Hello {{name}}</h1>
{{this.form.create}}
{{this.form.text('title')}}
{{this.form.select('gender', ['m':'male','f':'female'])}}
{{this.form.end}}
}}}