Last active
March 30, 2016 09:25
-
-
Save aTei/d322dc095f7fc6b0ce857c82d2d1e901 to your computer and use it in GitHub Desktop.
Windows part for crossbrowser favicons for Ruby on Rails 3+
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <browserconfig> | |
| <msapplication> | |
| <tile> | |
| <square70x70logo src="<%= asset_path("favicons/mstile-70x70.png") %>"/> | |
| <square150x150logo src="<%= asset_path("favicons/mstile-150x150.png") %>"/> | |
| <square310x310logo src="<%= asset_path("favicons/mstile-310x310.png") %>"/> | |
| <wide310x150logo src="<%= asset_path("favicons/mstile-310x150.png") %>"/> | |
| <TileColor>#ff6e3f</TileColor> | |
| </tile> | |
| </msapplication> | |
| </browserconfig> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment