mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
12 lines
149 B
Ruby
12 lines
149 B
Ruby
class HomeController < BaseController
|
|
layout 'darkswarm'
|
|
before_filter :load_active_distributors
|
|
|
|
def index
|
|
end
|
|
|
|
def about_us
|
|
end
|
|
end
|
|
|