Skip to content

Instantly share code, notes, and snippets.

@shu0115
Created March 28, 2012 03:55
Show Gist options
  • Save shu0115/2223481 to your computer and use it in GitHub Desktop.
Save shu0115/2223481 to your computer and use it in GitHub Desktop.
Railsでfavicon.icoを表示する設定
◆参考ページ
Railsでfavicon.icoを表示する設定 - hrendohの日記
- [ http://d.hatena.ne.jp/hrendoh/20111102/1320236055 ]
◆アイコンパス設定
app/views/application.html.erb
※「favicon_link_tag」を追加する
-----
<head>
<title>TestList : <%= session[:project_name] %></title>
<%= stylesheet_link_tag "application", :media => "all" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
<%= favicon_link_tag 'favicon.ico' %><%# <= ★追加 %>
</head>
-----
-----
<link href="/images/favicon.ico?4649789979" rel="shortcut icon" type="image/vnd.microsoft.icon" />
-----
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment