mirror of
https://github.com/kingomarnajjar/Deployment-app-for-cloud-hosting.git
synced 2026-07-26 06:37:19 +10:00
12 lines
156 B
Ruby
12 lines
156 B
Ruby
class PagesController < ApplicationController
|
|
|
|
def contact
|
|
end
|
|
|
|
def homepage
|
|
@name = 'Omar'
|
|
@day = Time.now.strftime('%A %B %Y ')
|
|
end
|
|
|
|
|
|
end
|