I have an app based on Posts. When I nest the routes like this:
this.resource('posts', function() {
this.route('post', {path: ':post_id'});
});
and try to access the /posts/id link it would only render the template if I place an {{outlet}} into the posts template.
Here is the code I am working based on github. It has all the functionality except it renders into the parent outlets and not the application outlet.
Would it be possible to have the show, new or edit template render its template in the application {{outlet}}?