ecole_eft_app/app/controllers/public/home_controller.rb
2013-02-13 00:51:35 +01:00

17 lines
246 B
Ruby

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