Skip to content

Instantly share code, notes, and snippets.

@levinotik
Created October 12, 2011 02:42
Show Gist options
  • Save levinotik/1280103 to your computer and use it in GitHub Desktop.
Save levinotik/1280103 to your computer and use it in GitHub Desktop.
controller
class PagesController < ApplicationController
def home
@title = "Home"
end
def contact
@title = "Contact"
end
def about
@title = "About"
end
def help
@title = "Help"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment