Whats the proper way to set the page title in rails 3. Currently I\'m doing the following:
app/views/layouts/application.html:
In application layout:
# app/views/layouts/application.html.erb <%= (yield :title) || 'General title' %>
then in each view where you want a specific title:
<% content_for :title, 'Specific title' %>