Rails-based website for local business
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

11 lines
328 B

  1. module ApplicationHelper
  2. def page_title
  3. default = 'Air-one Services'
  4. @title.nil? ? default : @title
  5. end
  6. def page_description
  7. default = 'Quality commercial, residential, and industrial '+
  8. 'HVAC, electrical and plumbing services since 1965'
  9. @description.nil? ? default : @description
  10. end
  11. end