17 lines
246 B
Ruby
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
|