Iron:router not working after deployment

Hi
I have implemented a basic routing using iron router. The routing logic works in my local desktop but donesnt work after deploying to testapp6.meteor.com . The routing code under testapp.js is as simple as
if (Meteor.isClient) {

Router.map(function(){
this.route(‘homepage’, {path: ‘/’});
});

Router.map(function(){
this.route(‘children’);
});
}

i have created two html files named homepage.html and children.html

homepage.html content is

HomePage

children.html content is

Children

both these html file has been created under a folder tmpl which is the same level as the testapp.js which has the route definition.