1
0
mirror of https://github.com/danbee/danbarberphoto synced 2025-03-04 08:49:07 +00:00
danbarberphoto/app/controllers/pages_controller.rb
Dan Barber 85cf2fb4b8 Updated photos model to use named scopes. Cleaned up some code. Added
meta_where as a gem, although I'm not using it yet.
2010-12-14 12:51:34 -05:00

12 lines
204 B
Ruby

class PagesController < ApplicationController
layout "photos"
def index
@photo = Photo.featured.order('RANDOM()').first
end
def about
@content = Page.find_by_name('about')
end
end