class PagesController < FallbackController

def index
  handle_with Pages::Index
end

def show
  handle_with Pages::Show, params: params
end

end