Hello, i am using haml with my rails application and i have a question how the easiest way to insert this haml code into a html file:
<div clas="holder">
<div class=top"></div>
<div class="content">
Content into the div goes here
</div>
<div class="bottom"></div>
</div>
And i want to use it in my haml document like this:
%html
%head
%body
Maybee some content here.
%content_box #I want to get the code i wrote inserted here
Content that goes in the content_box like news or stuff
%body
I hope you understand what i want to acomplish here. And if there is a easier way to do it please answer how. Thanks!