ecole_eft_app/app/controllers/public/home_controller.rb
2013-05-10 15:15:24 +02:00

17 lines
243 B
Ruby

class Public::HomeController < ApplicationController
layout "public"
def home
@articles = Article.before(Date.today).recents
@articles = @articles.page(params[:page]).per(4)
@title = "Formation EFT"
end
end