Skip to content

Instantly share code, notes, and snippets.

@robyurkowski
Created July 8, 2010 17:35
Show Gist options
  • Save robyurkowski/468338 to your computer and use it in GitHub Desktop.
Save robyurkowski/468338 to your computer and use it in GitHub Desktop.
## helpers/layout_helper.rb
module LayoutHelper
def title(page_title, show_title = true)
@content_for_title = page_title.to_s
@show_title = show_title
end
def show_title?
@show_title
end
end
## views/layouts/application.html.erb
<head>
<title>Site <%= h(":: " + yield(:title) || '') %></title>
</head>
## /views/<model>/anyview.html.erb
<% title "Locations" %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment