I'm calling link-to statement from a template The Routes are defined like this,
/app/router.js
Router.map.function(){
this.route('profiles');
this.route('exam', function(){
this.route('create');
this.route('evaluate');
});
/app/templates/profiles.hbs
{{#link-to "exam/create"}}
<p> Create an Exam </p>
{{/link-to}}
{{#link-to "exam/evaluate"}}
<p> Evaluate Exam </p>
{{/link-to}}