var HomeView = View.extend({ el: "body", events: { }, grid_template: $("#grid_template").html(), initialize: function(){ this.HeaderView = new HeaderView ({ parent: this }) this.LinksView = new LinksView ({ parent: this }) this.PhotoView = new PhotoView ({ parent: this }) }, show: function(){ this.LinksView.show() }, done: false, isFirstLoad: true, })