Skip to content

Instantly share code, notes, and snippets.

@thejefflarson
Created May 19, 2011 22:33
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 thejefflarson/981957 to your computer and use it in GitHub Desktop.
Save thejefflarson/981957 to your computer and use it in GitHub Desktop.
module ApplicationHelper
def title(title)
content_for(:title) { title }
title
end
end
# in application.html.erb
<title><%= yield(:title) %></title>
# in your views:
<h1><%= title @system.name %></h1>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment