From: Tom Hughes Date: Tue, 10 Sep 2013 20:35:25 +0000 (+0100) Subject: Add additional icon tags to the HTML header X-Git-Tag: live~4799 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/4f2e9e0888593557315e3110cdbb8ef67fa901ff Add additional icon tags to the HTML header --- diff --git a/app/assets/images/osm_logo_114.png b/app/assets/images/osm_logo_114.png new file mode 100644 index 000000000..63713fb9a Binary files /dev/null and b/app/assets/images/osm_logo_114.png differ diff --git a/app/assets/images/osm_logo_144.png b/app/assets/images/osm_logo_144.png new file mode 100644 index 000000000..35a975450 Binary files /dev/null and b/app/assets/images/osm_logo_144.png differ diff --git a/app/assets/images/osm_logo_228.png b/app/assets/images/osm_logo_228.png new file mode 100644 index 000000000..752d6363b Binary files /dev/null and b/app/assets/images/osm_logo_228.png differ diff --git a/app/assets/images/osm_logo_57.png b/app/assets/images/osm_logo_57.png new file mode 100644 index 000000000..94893c7e2 Binary files /dev/null and b/app/assets/images/osm_logo_57.png differ diff --git a/app/assets/images/osm_logo_72.png b/app/assets/images/osm_logo_72.png new file mode 100644 index 000000000..dc4e6d5aa Binary files /dev/null and b/app/assets/images/osm_logo_72.png differ diff --git a/app/views/layouts/_head.html.erb b/app/views/layouts/_head.html.erb index 83f1087dd..95984ca97 100644 --- a/app/views/layouts/_head.html.erb +++ b/app/views/layouts/_head.html.erb @@ -11,7 +11,12 @@ <%= stylesheet_link_tag "large-#{dir}", :media => "screen" %> <%= favicon_link_tag "favicon.ico" %> - <%= favicon_link_tag "osm_logo.png", :rel => "apple-touch-icon", :type => "image/png" %> + <%= favicon_link_tag "osm_logo_57.png", :rel => "apple-touch-icon", :sizes => "57x57", :type => "image/png" %> + <%= favicon_link_tag "osm_logo_72.png", :rel => "apple-touch-icon", :sizes => "72x72", :type => "image/png" %> + <%= favicon_link_tag "osm_logo_114.png", :rel => "apple-touch-icon", :sizes => "114x114", :type => "image/png" %> + <%= favicon_link_tag "osm_logo_144.png", :rel => "apple-touch-icon", :sizes => "144x144", :type => "image/png" %> + <%= favicon_link_tag "osm_logo_228.png", :rel => "icon", :sizes => "228x228", :type => "image/png" %> + <%= tag("meta", { :name => "msapplication-TileImage", :content => image_path("osm_logo_144.png") }) %> <%= tag("link", { :rel => "publisher", :href => "https://plus.google.com/111953119785824514010" }) %> <%= tag("link", { :rel => "search", :type => "application/opensearchdescription+xml", :title => "OpenStreetMap Search", :href => asset_path("osm.xml") }) %> <%= tag("meta", { :name => "description", :content => "OpenStreetMap is the free wiki world map." }) %>