pmr_app/app/controllers/public/home_controller.rb
Nicolas Bally 428372d6f9 initial
2016-02-08 10:27:25 +01:00

21 lines
276 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
def assurance
end
end