{% if foo.bar is defined %}
...
{% endif %}
{{ var.foo|default('foo item on var is not defined') }}
public function indexAction($name)
{
$response = $this->forward('AcmeHelloBundle:Hello:fancy', array(
'name' => $name,
'color' => 'green',
));
// ... further modify the response or return it directly
return $response;
}