mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
16 lines
231 B
Ruby
16 lines
231 B
Ruby
class HomeController < BaseController
|
|
layout 'landing_page'
|
|
|
|
def new_landing_page
|
|
end
|
|
|
|
def about_us
|
|
end
|
|
|
|
def temp_landing_page
|
|
@groups = EnterpriseGroup.on_front_page.by_position
|
|
|
|
render layout: false
|
|
end
|
|
end
|