Files
osem/app/controllers/home_controller.rb
Henne Vogelsang 252e1fe544 Completely rework the navigation
Get rid of the admin layout
Get rid of the navbar custom style, use bootstrap-sass variables instead
Get rid of all the scaffold files
2013-06-27 16:58:20 +02:00

7 lines
152 B
Ruby

class HomeController < ApplicationController
def index
@today = Date.current
@current = Conference.where("start_date >= ?", @today)
end
end