17 lines
196 B
Ruby
17 lines
196 B
Ruby
class Public::HomeController < ApplicationController
|
|
|
|
layout "public"
|
|
|
|
def home
|
|
@accueil = true
|
|
@articles = Article.before(Date.today).recents
|
|
|
|
|
|
|
|
|
|
@title = ""
|
|
|
|
end
|
|
|
|
end
|