I have a rails app, that has a haml file in the view. I would like to see the haml file in the browser, what is the correct way of doing this?
I have started up rails s
using http://localhost:3000
but how do I view the haml file by it self?
|
I have a rails app, that has a haml file in the view. I would like to see the haml file in the browser, what is the correct way of doing this? I have started up using but how do I view the haml file by it self? |
|||
|
Haml is just another template language like ERb, so you can treat it exactly the same as a view written in ERb:
|
|||
|
|
|
If you want "the html that was rendered by the haml" just inspect the particular page from the browser. |
|||
|
|
rake routesand show us the output – Charles Feb 13 at 23:00