Skip to content

Instantly share code, notes, and snippets.

@wrburgess
Created November 7, 2011 02:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wrburgess/1344044 to your computer and use it in GitHub Desktop.
Save wrburgess/1344044 to your computer and use it in GitHub Desktop.
return a title on a per-page basis
# return a title on a per-page basis
def title
base_title = "[Site Name]"
if @title.nil?
base_title
else
"#{base_title} | #{@title}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment