I have this router
App.Router.map(function() {
this.resource('about', function() {
this.route('new');
});
});
and
<script type="text/x-handlebars" data-template-name="about/new">
<h1>About/New Page</h1>
</script>
However when I go to about/new
route, I see the about
template only. So, how do I render the template of a nested route?
Here's a jsfiddle: http://jsfiddle.net/C4gSE/