1
0
mirror of https://github.com/danbee/danbarberphoto synced 2025-03-04 08:49:07 +00:00
danbarberphoto/app/controllers/pages_controller.rb

12 lines
244 B
Ruby

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