You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
328 B
11 lines
328 B
module ApplicationHelper
|
|
def page_title
|
|
default = 'Air-one Services'
|
|
@title.nil? ? default : @title
|
|
end
|
|
def page_description
|
|
default = 'Quality commercial, residential, and industrial '+
|
|
'HVAC, electrical and plumbing services since 1965'
|
|
@description.nil? ? default : @description
|
|
end
|
|
end
|