2010-04-11 23:59:18 +00:00
|
|
|
class PagesController < ActionController::Base
|
|
|
|
|
|
|
|
include Locomotive::Routing::SiteDispatcher
|
|
|
|
|
2010-05-30 23:57:33 +00:00
|
|
|
include Locomotive::Render
|
|
|
|
|
2010-04-11 23:59:18 +00:00
|
|
|
before_filter :require_site
|
|
|
|
|
2010-05-11 21:38:52 +00:00
|
|
|
def show
|
2010-05-30 23:57:33 +00:00
|
|
|
render_locomotive_page
|
2010-05-11 21:38:52 +00:00
|
|
|
end
|
2010-04-11 23:59:18 +00:00
|
|
|
|
|
|
|
end
|