This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# for more info: https://gist.github.com/1120938 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#in products_controller.rb | |
before_filter :set_title | |
def set_title | |
# default title for this controller | |
@title = 'Products' | |
end | |
def index | |
# different title for this action | |
@title = 'Catalog' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- in views/products/index.html.erb --> | |
<% @title = "Catalog" %> | |
<!-- in application.rhtml.erb --> | |
<title><%= @title.titleize + ' - My Great Store' %></title> |
NewerOlder