Skip to content

Instantly share code, notes, and snippets.

@mklickman
Created February 27, 2013 15:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mklickman/5048514 to your computer and use it in GitHub Desktop.
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.
<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