Stackedit/public/index.html
HaiyangXu 445affb08d 'Add to homescreen' feature on ipad with icon
add meta to support  ipad.  When add to home screen ,Stackedit can run
in standalone mode ,and can be an offline app even without connections.
2014-05-18 21:24:25 +08:00

36 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html manifest="cache.manifest">
<head>
<title>StackEdit markdown editor</title>
<link rel="canonical" href="https://stackedit.io/">
<link rel="icon" href="res-min/img/stackedit-32.ico" type="image/x-icon">
<link rel="shortcut icon" href="res-min/img/stackedit-32.ico" type="image/x-icon">
<link rel="shortcut icon" sizes="196x196" href="res-min/img/nice-highres.png">
<meta name="description" content="Full-featured, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stack Exchange sites.">
<meta name="author" content="Benoit Schweblin">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/res-min/img/logo-ipad-retina.png"/>
<meta name="msvalidate.01" content="5E47EE6F67B069C17E3CDD418351A612"
/>
<script>
// Use ?debug to serve original JavaScript files instead of minified
window.baseDir = 'res';
if (!/(\?|&)debug($|&)/.test(location.search)) {
window.baseDir += '-min';
}
window.require = {
baseUrl: window.baseDir,
deps: ['main']
};
</script>
<script src="res-min/require.js"></script>
</head>
<body></body>
</html>