-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
52 lines (51 loc) · 2.15 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="stylesheet" href="./static/codemirror/lib/codemirror.css">
<link rel="stylesheet" href="./static/codemirror/theme/monokai.css">
<link rel="stylesheet" href="./static/codemirror/addon/hint/show-hint.css"/>
<link rel="stylesheet" href="./static/codemirror/addon/display/fullscreen.css"/>
<link rel="stylesheet" href="./static/css/bootstrap.css"/>
<link rel="stylesheet" href="./static/css/iziToast.min.css"/>
<link id="icon" rel="shortcut icon" href="./static/image/logo.png">
<title>Xcoding.me</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-136427962-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-136427962-1');
</script>
<style>
html,body{
height:100%;
width:100%;
border:hidden;
overflow:hidden;
}
</style>
</head>
<body>
<div id="app">
</div>
<!-- built files will be auto injected -->
<script src="./static/codemirror/lib/codemirror.js"></script>
<script src="./static/codemirror/mode/javascript/javascript.js"></script>
<script src="./static/codemirror/addon/selection/active-line.js"></script>
<script src="./static/codemirror/addon/edit/matchbrackets.js"></script>
<script src="./static/codemirror/addon/hint/show-hint.js"></script>
<script src="./static/codemirror/addon/hint/javascript-hint.js"></script>
<script src="./static/codemirror/addon/display/fullscreen.js"></script>
<script src="./static/js/beautify.js"></script>
<script src="./static/js/index.js"></script>
<script src="./static/js/jquery.js"></script>
<script src="./static/js/bootstrap-treeview.js"></script>
<script src="./static/js/t.min.js"></script>
<script src="./static/js/iziToast.min.js"></script>
<script src="./static/js/util.js"></script>
<script src="./static/js/fun.js"></script>
</body>
</html>