var HomeView = View.extend({ el: "#home", // template: liquid($('#tmpl-home').html()), events: { }, initialize: function(options){ options = options || {} var data = this.data = options.data }, render: function(){ if (this.rendered) return this.rendered = true }, show: function(){ document.body.className = "home" this.render(this.data) }, hide: function(){ }, corner: function(){ }, })