mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
19 lines
326 B
Ruby
19 lines
326 B
Ruby
class HomeController < BaseController
|
|
layout 'darkswarm'
|
|
|
|
def index
|
|
@active_distributors ||= Enterprise.distributors_with_active_order_cycles
|
|
end
|
|
|
|
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
|