Pages.Show = Backbone.View.extend({ initialize: function(options) { this.pages = options.pages; this.pages.on('reset', this.render, this); }, render: function() { console.log('render show'); if (!this.pages.current) { return; } this.$el.html('

' + (this.pages.current.get('title') || 'untitled') + '

' + '

' + this.pages.current.get('text') + '

' + ' back'); return this; } });