Stackedit/views/editor.html

37 lines
1.7 KiB
HTML
Raw Permalink Normal View History

2014-08-27 23:04:27 +00:00
<!DOCTYPE html>
<html<%- cache ? ' manifest="cache.manifest"' : '' %>>
<head>
<title>StackEdit Editor</title>
<link rel="canonical" href="https://stackedit.io/editor">
<link rel="icon" href="res-min/img/stackedit-32.ico" type="image/x-icon">
2014-10-12 17:57:58 +00:00
<link rel="icon" sizes="192x192" href="res-min/img/logo-highres.png">
2014-08-27 23:04:27 +00:00
<link rel="shortcut icon" href="res-min/img/stackedit-32.ico" type="image/x-icon">
2014-10-12 17:57:58 +00:00
<link rel="shortcut icon" sizes="192x192" href="res-min/img/logo-highres.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="res-min/img/logo-ipad-retina.png">
<meta charset="UTF-8">
2014-08-27 23:04:27 +00:00
<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="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<meta name="mobile-web-app-capable" content="yes">
2014-10-12 17:57:58 +00:00
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
2014-08-27 23:04:27 +00:00
<meta name="msvalidate.01" content="5E47EE6F67B069C17E3CDD418351A612">
<script>
// Use ?debug to serve original JavaScript files instead of minified
2014-09-06 00:11:06 +00:00
window.baseDir = 'res';
2014-08-27 23:04:27 +00:00
if (!/(\?|&)debug($|&)/.test(location.search)) {
window.baseDir += '-min';
}
window.require = {
baseUrl: window.baseDir,
deps: ['main']
};
</script>
2014-09-06 00:11:06 +00:00
<script src="res-min/require.js"></script>
2014-08-27 23:04:27 +00:00
</head>
<body></body>
</html>