Skip to content

Instantly share code, notes, and snippets.

@enriquesaid
Last active August 29, 2015 14:17
Show Gist options
  • Save enriquesaid/45c2c0f1d8afd549a660 to your computer and use it in GitHub Desktop.
Save enriquesaid/45c2c0f1d8afd549a660 to your computer and use it in GitHub Desktop.
Template
var View = Backbone.View.extend({
template: _.template("<h1> Título da View </h1>"),
render: function() {
this.$el.html(this.template());
return this;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment