favicon_link_tag
- 1.0.0
- 1.1.0
- 1.1.1
- 1.1.6
- 1.2.0
- 1.2.6
- 2.0.0
- 2.0.1
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.2
- 2.3.8
- 3.0.0 (0)
- 3.0.5 (0)
- 3.0.7 (0)
- 3.0.9 (-6)
- 3.1.0 (0)
- 3.2.1 (-38)
- 3.2.3 (0)
- 3.2.8 (0)
- 3.2.13 (0)
- What's this?
favicon_link_tag(source='/favicon.ico', options={})
public
Web browsers cache favicons. If you just throw a favicon.ico into the document root of your application and it changes later, clients that have it in their cache won’t see the update. Using this helper prevents that because it appends an asset ID:
<%= favicon_link_tag %>
generates
<link href="/favicon.ico?4649789979" rel="shortcut icon" type="image/vnd.microsoft.icon" />
You may specify a different file in the first argument:
<%= favicon_link_tag 'favicon.ico' %>
That’s passed to path_to_image as is, so it gives
<link href="/images/favicon.ico?4649789979" rel="shortcut icon" type="image/vnd.microsoft.icon" />
The helper accepts an additional options hash where you can override "rel" and "type".
For example, Mobile Safari looks for a different LINK tag, pointing to an image that will be used if you add the page to the home screen of an iPod Touch, iPhone, or iPad. The following call would generate such a tag:
<%= favicon_link_tag 'mb-icon.png', :rel => 'apple-touch-icon', :type => 'image/png' %>


