9 lines
156 B
Ruby
9 lines
156 B
Ruby
class HomeController < ApplicationController
|
|
|
|
def show
|
|
@files = Dir.glob("public/images/startsite/*.jpg")
|
|
render :partial=>"index"
|
|
end
|
|
|
|
end
|