Oliver Howes
Oliver Howes

Reputation: 161

How do your link to a favicon in ruby on rails?

Here is what I am trying.

<%= image_tag 'favicon.ico', rel="icon" type="image/x-icon" %>

Upvotes: 6

Views: 7487

Answers (2)

Omnigazer
Omnigazer

Reputation: 831

How about using favicon_link_tag helper method instead?

<%= favicon_link_tag 'favicon.ico' %>

Upvotes: 1

Igor Ivancha
Igor Ivancha

Reputation: 3451

Try add

<%= favicon_link_tag 'favicon.ico' %>

in head section in your application.html.erb

Upvotes: 17

Related Questions