Created
February 27, 2013 15:00
-
-
Save mklickman/5048514 to your computer and use it in GitHub Desktop.
This snippet inserts the three meta tags used to specify what image, background color, and name to use when your site is pinned to the Windows 8 start screen.
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
<snippet> | |
<content><![CDATA[ | |
<!-- For details, see http://hicksdesign.co.uk/journal/pinned-sites-in-windows-8 --> | |
<meta name="msapplication-TileImage" content=“${1:filename.png}”> | |
<meta name="msapplication-TileColor" content="#${2:hex-value}”> | |
<meta name="application-name" content=${3:Win8-specific application title}”> | |
]]></content> | |
<description>Windows 8 tile specification for pinning to start screen</description> | |
<tabTrigger>win8tile</tabTrigger> | |
<scope>text.html</scope> | |
</snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment