Skip to content

Instantly share code, notes, and snippets.

@hotmeteor
Created October 27, 2012 21:43
Show Gist options
  • Save hotmeteor/3966471 to your computer and use it in GitHub Desktop.
Save hotmeteor/3966471 to your computer and use it in GitHub Desktop.
First run at a metadata.json file
/*
inspiration: https://twitter.com/jfsiii/status/261575761163599872
meta: https://github.com/h5bp/mobile-boilerplate/blob/master/index.html
metadata.json
*/
{
"version": "0.0.1",
"charset": "utf-8",
"meta": [
{ "name": "author", "content": "Adam Campbell" },
{ "name": "description", "content": "This is the description for my website." },
{ "name": "HandheldFriendly", "content": "True" },
{ "name": "MobileOptimized", "content": "320" },
{ "name": "viewport", "content": "width=device-width" },
{ "http-equiv": "cleartype", "content": "on" },
{ "name": "msapplication-TileImage", "content": "img/touch/apple-touch-icon-144x144-precomposed.png" },
{ "name": "msapplication-TileColor", "content": "#222222" },
{ "name": "apple-mobile-web-app-capable", "content": "yes" },
{ "name": "apple-mobile-web-app-status-bar-style", "content": "black" },
{ "name": "apple-mobile-web-app-title", "content": "" }
],
"link": [
{
"apple-touch-icon-precomposed": [
{
"144x144": "img/touch/apple-touch-icon-144x144-precomposed.png",
"114x114": "img/touch/apple-touch-icon-114x114-precomposed.png",
"72x72": "img/touch/apple-touch-icon-72x72-precomposed.png",
},
"img/touch/apple-touch-icon-57x57-precomposed.png"
],
"shortcut icon": "img/touch/apple-touch-icon.png"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment