favicon_link_tag

favicon_link_tag(source='favicon.ico', options={})
Instance Public methods

Returns a link loading a favicon file. You may specify a different file in the first argument. The helper accepts an additional options hash where you can override ârelâ and âtypeâ.

Options

  • :rel - Specify the relation of this link, defaults to 'shortcut icon'

  • :type - Override the auto-generated mime type, defaults to 'image/vnd.microsoft.icon'

Examples

favicon_link_tag 'myicon.ico'
# => <link href="/assets/myicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />

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'
# => <link href="/assets/mb-icon.png" rel="apple-touch-icon" type="image/png" />
doc_ruby_on_rails
2015-06-20 00:00:00
Comments
Leave a Comment

Please login to continue.