6 lines
167 B
Ruby
6 lines
167 B
Ruby
class HomeController < ApplicationController
|
|
def index
|
|
@date_time = Time.now.strftime("%A, %d %B %Y %r (%Z)")
|
|
@os = "Ubuntu GNU/Linux 22.04 (LTS)"
|
|
end
|
|
end
|