What is the best way to create a custom title for pages in a rails app with out using a plug-in?
|
In your views do something like this:
The following goes in the layout file:
It's also possible to encapsulate the |
|||||||||||||
|
|
Here's a simple option that I like to use In your layout
And at the top of your page template (first line)
Because of the way the layout and page templates are parsed the @title="Home" is evaluated before the layout is rendered. |
|||||||||||
|
|
Best practice is to use content_for. First, add a couple of helper methods (ie. stick in app/helpers/application_helper.rb):
@content_for_title is basically like using yield(:title), except you'll run into problems when trying to call yield like that from a helper method. Then in your layout view you can simply use:
...and in the view itself:
This way has the advantage of allowing you to shuffle where you stick the h1 tag for your title, and keeps your controller nice and free of pesky @title variables. |
|||||
|
|
Look into |
|||
|
|
|
Without further details on the use-case or requirements that you're trying to satisfy, I can think of several alternatives: 1) Switch the title in one of your layout pages and consume a helper method stored in
This approach will give you a unique title for each layout page. 2) Railscasts suggests using a partial to load what shows up between the HEAD tags 3) Use javascript/ajax calls to manipulate the DOM if you need to change the title after the load event. Maybe you don't really want to change the content tagged by the |
|||
|
|
|
I use nifty_generator's "nifty_layout" which provides with a title variable which I can call then on the page using:
I can also user |
||||
|
|
|
You can also set it in a before_filter in your controller.
You can then set conditions in the set_title method to set a different titles for different actions in the controller. It's nice to be able to see all the relevant page titles within your controller. |
|||||||||||
|
|
I use this plugin I wrote: http://henrik.nyh.se/2007/11/my-rails-title-helpers |
|||
|
The best/clean way to do this :
|
|||
|
|
|
An improvement on @opsb and a more complete form of @FouZ's: in application.html.erb
in the view erb file or its controller
|
|||
|
|
|
I would like to add my pretty simple variant. In the ApplicationController define this method:
After that you can call get_title from your layout's title tag. You can define more specific title for your page by defining @action_title_name variable in your actions. |
|||
|
|