14 lines
221 B
Ruby
14 lines
221 B
Ruby
|
module Locomotive
|
||
|
module Public
|
||
|
class SitemapsController < BaseController
|
||
|
|
||
|
respond_to :xml
|
||
|
|
||
|
def show
|
||
|
@pages = current_site.pages.published
|
||
|
respond_with @pages
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|