23 lines
620 B
Ruby
23 lines
620 B
Ruby
module Merged
|
|
module ViewHelper
|
|
include MergedHelper
|
|
# section should be hash with at least 'template' key
|
|
def find_template(section)
|
|
"merged/view/" + section.template
|
|
end
|
|
|
|
def bg(section)
|
|
return "" if section.image.blank?
|
|
puts "--#{Image.image_root}/#{section.image}--"
|
|
img = asset_url( "#{Image.image_root}/#{section.image}" )
|
|
"background-image: url('#{img}');"
|
|
end
|
|
def image_for(section , classes)
|
|
image_tag("#{Image.image_root}/#{section.image}" , class: classes)
|
|
end
|
|
def has_button(section)
|
|
section.content['button']
|
|
end
|
|
end
|
|
end
|