I am trying to create application with Ember.js, but without storing the data, i want to have all my routes and templates defined before. For example, i want to have menu and when clicking on it i want different parts of code rendered, but without storing data with ember data or whatever else, like it is in code below. Does anyone have tutorial or code that helps me with this?
App.IndexRoute = Ember.Route.extend({
model : function(){
var stories = this.get('store').findAll('story');
return stories;
}
});