Following http://stackoverflow.com/questions/2268204/favicon-dimensions advice on the best range of icons to offer, and using the site linked there to generate everything.
12 lines
455 B
Text
12 lines
455 B
Text
<?xml version="1.0" encoding="utf-8"?>
|
|
<browserconfig>
|
|
<msapplication>
|
|
<tile>
|
|
<square70x70logo src="<%= image_path("mstile-70x70.png") %>"/>
|
|
<square150x150logo src="<%= image_path("mstile-150x150.png") %>"/>
|
|
<square310x310logo src="<%= image_path("mstile-310x310.png") %>"/>
|
|
<wide310x150logo src="<%= image_path("mstile-310x150.png") %>"/>
|
|
<TileColor>#00a300</TileColor>
|
|
</tile>
|
|
</msapplication>
|
|
</browserconfig>
|