mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
12 lines
255 B
Ruby
12 lines
255 B
Ruby
class PagesController < ApplicationController
|
|
layout "photos"
|
|
|
|
def index
|
|
@photo = Photo.first(:order => 'RANDOM()', :conditions => { :featured => true, :enabled => true })
|
|
end
|
|
|
|
def about
|
|
@content = Page.find_by_name('about')
|
|
end
|
|
end
|