mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-14 23:47:48 +00:00
8 lines
219 B
Ruby
8 lines
219 B
Ruby
module ApplicationHelper
|
|
def home_page_cms_content
|
|
if controller.controller_name == 'home' && controller.action_name == 'index'
|
|
cms_page_content(:content, Cms::Page.find_by_full_path('/'))
|
|
end
|
|
end
|
|
end
|