Stackedit/viewer.html

39 lines
1.3 KiB
HTML
Raw Normal View History

2013-04-30 23:02:19 +00:00
<!DOCTYPE html>
<html manifest="cache.manifest">
<head>
<title>StackEdit Viewer</title>
2013-07-29 00:03:19 +00:00
<link rel="canonical"
href="http://benweet.github.io/stackedit/viewer.html">
2013-04-30 23:02:19 +00:00
<link rel="icon" href="img/stackedit-32.ico" type="image/x-icon">
<link rel="shortcut icon" href="img/stackedit-32.ico"
type="image/x-icon">
<meta name="description"
content="StackEdit is a free, 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">
2013-05-18 13:42:40 +00:00
<meta name="msvalidate.01" content="5E47EE6F67B069C17E3CDD418351A612" />
2013-04-30 23:02:19 +00:00
<script>
2013-07-29 00:03:19 +00:00
// Use http://.../?debug to serve original CSS/JavaScript files instead of minified
var suffix = "";
if(!location.search.match(/(\?|&)debug/)) {
suffix = "-min";
}
document.write('<link href="css/main' + suffix + '.css" rel="stylesheet">');
var theme = localStorage.theme;
if(theme) {
2013-05-21 22:34:42 +00:00
document.write('<link href="themes/' + theme + '/' + theme + '.css" rel="stylesheet">');
2013-07-29 00:03:19 +00:00
}
var require = {
baseUrl: "js",
deps: [
"main" + suffix
]
};
2013-04-30 23:02:19 +00:00
var viewerMode = true;
</script>
2013-06-02 00:38:23 +00:00
<script src="js/libs/require.js"></script>
2013-04-30 23:02:19 +00:00
</head>
<body class="viewer">
</body>
</html>