According to http://handlebarsjs.com/expressions.html, I should be able to do this:
{{article.title}}
But I can\'t see
You should use {{#with object}}
If your object is something like :
my_object = { name : 'my_name', prop : 'my_prop' }
In your template your can do :
{{#with my_object}} Name is {{name}} Prop is {{prop}} {{/with}}
Name is {{name}}
Prop is {{prop}}
Here you go :)