diff options
| author | Luc Donnet | 2015-02-09 13:46:22 +0100 | 
|---|---|---|
| committer | Luc Donnet | 2015-02-09 13:46:22 +0100 | 
| commit | 85c1db258c11d660bc3e55e0229b1302aae1d02f (patch) | |
| tree | 06feb0a5c61a79b4cfaf11499aa5043a98ed26d8 | |
| parent | 854cef50dc02e652eb2b61966c40d98b76df8166 (diff) | |
| download | chouette-core-85c1db258c11d660bc3e55e0229b1302aae1d02f.tar.bz2 | |
Add favicon to chouette
| -rw-r--r-- | app/assets/images/logo_chouette_small.ico | bin | 0 -> 1150 bytes | |||
| -rw-r--r-- | app/assets/images/logo_chouette_small.png | bin | 0 -> 896 bytes | |||
| -rw-r--r-- | app/views/layouts/application.html.erb | 2 | ||||
| -rw-r--r-- | app/views/layouts/devise.html.erb | 2 | 
4 files changed, 4 insertions, 0 deletions
| diff --git a/app/assets/images/logo_chouette_small.ico b/app/assets/images/logo_chouette_small.icoBinary files differ new file mode 100644 index 000000000..0492f8ad8 --- /dev/null +++ b/app/assets/images/logo_chouette_small.ico diff --git a/app/assets/images/logo_chouette_small.png b/app/assets/images/logo_chouette_small.pngBinary files differ new file mode 100644 index 000000000..460e7f277 --- /dev/null +++ b/app/assets/images/logo_chouette_small.png diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 38125e112..7b9876d4e 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -2,6 +2,8 @@  <html lang="<%= I18n.locale %>">    <head>      <title>Chouette V2 - <%= title %></title> +    <%= favicon_link_tag "logo_chouette_small.ico" %> +    <%= favicon_link_tag 'logo_chouette_small.png', rel: 'apple-touch-icon', type: 'image/png' %>      <%= stylesheet_link_tag :application %>      <%= javascript_include_tag :application %>      <% if defined?( @map) %> diff --git a/app/views/layouts/devise.html.erb b/app/views/layouts/devise.html.erb index 60c531780..e2def9fa3 100644 --- a/app/views/layouts/devise.html.erb +++ b/app/views/layouts/devise.html.erb @@ -2,6 +2,8 @@  <html lang="<%= I18n.locale %>">    <head>      <title>Chouette V2 - <%= title %></title> +    <%= favicon_link_tag "logo_chouette_small.ico" %> +    <%= favicon_link_tag 'logo_chouette_small.png', rel: 'apple-touch-icon', type: 'image/png' %>      <%= stylesheet_link_tag :application %>      <%= javascript_include_tag :application %>      <% if defined?( @map) %> | 
