Class: EtCms::PagesController

Inherits:
ApplicationController show all
Defined in:
app/controllers/et_cms/pages_controller.rb

Instance Method Summary collapse

Instance Method Details

#homeObject



4
5
6
7
# File 'app/controllers/et_cms/pages_controller.rb', line 4

def home
  @page = Page.find("home")
  render "show"
end

#showObject



10
11
12
# File 'app/controllers/et_cms/pages_controller.rb', line 10

def show
  @page = Page.find(params[:id])
end