MVC frameworks always allow views to be stored as separate files and retrieved. How is this supposed to be accomplished in Ember.js? I've been looking for hours, so if you want to vote this down as some sort of duplicate, please at least link to a question or resource that provides a definitive, straightforward answer.
For instance, Ember automatically creates an index controller, and automatically renders the index
template if you indicate an {{outlet}}
as long as the url is /
, so I shouldn't need any code other than window.App = Ember.Application.create();
in my app.js for this functionality. How do I create a separate file such as index.handlebars and have Ember find and render it?