Class: GacoCms::FrontController

Inherits:
Object
  • Object
show all
Defined in:
app/controllers/gaco_cms/front_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



10
11
12
# File 'app/controllers/gaco_cms/front_controller.rb', line 10

def index
  render theme_path_for(:index)
end

#pageObject



14
15
16
17
18
# File 'app/controllers/gaco_cms/front_controller.rb', line 14

def page
  key = params[:page_id]
  @page = Page.by_key(key) || Page.find(key)
  render theme_path_for(:page)
end