10 lines
112 B
Ruby
10 lines
112 B
Ruby
|
class PagesController < ApplicationController
|
||
|
|
||
|
layout 'pages'
|
||
|
|
||
|
def show
|
||
|
render params[:page]
|
||
|
end
|
||
|
|
||
|
end
|