Created
August 6, 2013 08:43
-
-
Save defeed/6162820 to your computer and use it in GitHub Desktop.
Rails helper method for an app per-page title.
This file contains hidden or 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
def title | |
base_title = "Lorem Ipsum" | |
@title ? "#{@title} – #{base_title}".html_safe : base_title | |
end |
This file contains hidden or 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
def show | |
@title = "Dolor Sit Amet" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment