-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (51 loc) · 1.27 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>gum.js</title>
<link rel="shortcut icon" type="image/svg" href="favicon.svg">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="libs/katex.css">
</head>
<body>
<div id="main">
<div id="left">
<div id="stat"></div>
<div id="code">
<div id="icon-bar">
<svg width="20" height="20" id="docs" class="icon">
<use xlink:href="css/icons.svg#docs-icon"></use>
</svg>
</div>
</div>
<div id="conv">
<div id="icon-bar">
<svg width="20" height="20" id="font" class="icon">
<use xlink:href="css/icons.svg#font-icon"></use>
</svg>
<svg width="20" height="20" id="copy" class="icon">
<use xlink:href="css/icons.svg#copy-icon"></use>
</svg>
<svg width="20" height="20" id="save" class="icon">
<use xlink:href="css/icons.svg#save-icon"></use>
</svg>
</div>
</div>
</div>
<div id="mid">
</div>
<div id="right">
<div id="disp"></div>
<div id="icon-bar">
<svg width="20" height="20" id="spng" class="icon">
<use xlink:href="css/icons.svg#save-icon"></use>
</svg>
</div>
</div>
</div>
<script src="libs/codemirror.js"></script>
<script src="libs/mathjax.js"></script>
<script src="js/index.js" type="module"></script>
</body>
</html>