-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev.html
72 lines (49 loc) · 1.97 KB
/
dev.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<title>snippets</title>
<!-- <meta property="og:title" content="snippets"> -->
<!-- <base href="/snippets/" target="_blank"> -->
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!-- <meta name="viewport" content="viewport-fit=cover, initial-scale=1, maximum-scale=5, width=device-width, height=device-height"> -->
<meta name="viewport" content="viewport-fit=cover, initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width, height=device-height">
<link rel="manifest" href="snippets.dev.json" crossorigin="use-credentials"/>
<meta name="description" content="snippets">
<meta name="theme-color" content="#000000"/>
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="snippets">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="icon" href="favicon.ico" />
<link rel="shortcut icon" type="image/png" href="icon.png"/>
<link rel="apple-touch-icon" sizes="192x192" href="apple-touch-icon.png">
<link rel="stylesheet" href="/snippet/css/snippet.css" />
<link rel="stylesheet" href="css/snippets.css">
<script>
/**
* @export
* @define {boolean} DEBUG : verbose
*/
var DEBUG = true;
</script>
<script src="/codemirror/js/editor.bundle.js"></script>
<!-- <script src="/codemirror/js/codemirror.package.release.min.js"></script> -->
<script src="/snippet/js/snippet.js"></script>
<script src="js/snippets.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<header class="header"></header>
<main class="content"></main>
<nav class="menu none">
<div class="menumask"></div>
<div class="menuwrap">
<div class="menutools"></div>
<input class="menulook" type="search"/>
<div class="menulists">
<ul class="menulist" role="menu"></ul>
</div>
</div>
</nav>
</body>
</html>