var AboutView = View.extend({ el: "#about", // template: liquid($('#tmpl-about').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 = "about" this.render(this.data) }, hide: function(){ }, })