Currently I am using backbone-rails in my Rails app. I would like to know how to use client side Haml/Jade backbone.js with that gem and the rails asset pipline.
Asked
Active
Viewed 3,080 times
1 Answers
11
I'm using haml_coffee_assets and it works perfectly !
Haml templates are compiled with the Rails assets, and then on the client side you "render" the templates.
test.hamlc:
%span
= @title
on client side:
JST["test"]({title: "Yeah"})
=> <span>Yeah</span>
UPDATE My project has grown very big now (Feb 2012), and I confirm it's working really, really well !

Blacksad
- 14,906
- 15
- 70
- 81