Any idea about how can I use HAML as template engine ?
My basic Backbone.View using requirejs-rails
define(['jquery'
, 'underscore'
, 'backbone'
, 'views/view_mixins'
, 'templates/home'
, 'channel'
], function($, _
, Backbone
, UserMixin
, TemplateHome
, Channel
) {
var HomeView = Backbone.View.extend({
viewName: "HomeView",
template: TemplateHome,