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 :
<template name="my_template">
{{#with my_object}}
<p>Name is {{name}}<p>
<p>Prop is {{prop}}</p>
{{/with}}
</template>
Here you go :)