mirror of
https://github.com/openSUSE/osem.git
synced 2026-05-07 15:13:11 -04:00
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
7 lines
152 B
Ruby
7 lines
152 B
Ruby
class HomeController < ApplicationController
|
|
def index
|
|
@today = Date.current
|
|
@current = Conference.where("start_date >= ?", @today)
|
|
end
|
|
end
|