RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: rowend
Site: http://rowend.com
A good usage example is with the title of the page. You can change it in base of each page.
# application.html.erb <title><%= yield :title_tag %></title>
# view index.html.erb <% content_for :title_tag do %> Index Title <% end %>
A good usage example is with the title of the page.
You can change it in base of each page.