gateway/app/helpers/cms_helper.rb

19 lines
478 B
Ruby
Raw Normal View History

2022-11-22 16:42:20 +02:00
module CmsHelper
2022-11-22 19:44:34 +02:00
# sectio should be hash with at least 'template' key
def find_template(section)
"sections/" + section["template"]
end
def bg(section)
#{'background-image' => url('#{image_url('cms/' + section['image'])}')}
img = image_url "cms/house.jpg"
"background-image: url('#{img}');"
end
2022-11-23 11:05:22 +02:00
def image_for(section , classes)
image_tag("cms/#{section['image']}" , class: classes)
end
def has_button(section)
section['button']
end
2022-11-22 16:42:20 +02:00
end