Skip to content

openminds/title_helper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A Rails view helper to keep <title> information in sync with your <h1>'s

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages