Я использую haml с моим приложением rails, и у меня возник вопрос, как проще всего вставить этот код haml в html-файл:
<div clas="holder">
<div class=top"></div>
<div class="content">
Content into the div goes here
</div>
<div class="bottom"></div>
</div>
И я хочу использовать его в своем документе haml следующим образом:
%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
Есть ли более простой способ сделать это?
Я получаю эту ошибку:
**unexpected $end, expecting kEND**
с этим кодом:
# Methods added to this helper will be available to all templates in the application.
module ApplicationHelper
def content_box(&block)
open :div, :class => "holder" do # haml helper
open :div, :class => "top"
open :div, :class => "content" do
block.call
open :div, :class => "bottom"
end
end
end