mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
7 lines
162 B
Ruby
7 lines
162 B
Ruby
class PagesController < ApplicationController
|
|
def show
|
|
@page = PagePresenter.new(Page.find_by_name!(params[:name]))
|
|
@page_title = @page.title
|
|
end
|
|
end
|