public
Description: A Rails view helper to keep <title> information in sync with your <h1>'s
Homepage:
Clone URL: git://github.com/DefV/title_helper.git
Mikael Hallendal (author)
Mon Jun 16 03:48:14 -0700 2008
DefV (committer)
Mon Jun 16 03:48:14 -0700 2008
name age message
file MIT-LICENSE Loading commit data...
file README.rdoc
file init.rb
directory lib/
directory test/
README.rdoc

TitleHelper

=====

TitleHelper allows you to keep your <title> attributes synced with your <h1> attributes, which is more SEO friendly. This is 100% done in the view, which is different from some other plugins, who work with a title-method in the controllers.

Example

=

This method should be used in your layout and your actions.

In your action:

  <%= title "Edit user #{@user.name}" %>
  # => <h1>Edit user Jan De Poorter</h1>

In your layout:

  <head>
    <title><%= title :site_name => 'Foobar' %></title>
    # => <title>Edit user Jan De Poorter - Foobar</title>

Copyright © 2008 Jan De Poorter, released under the MIT license