-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.html
40 lines (31 loc) · 1.01 KB
/
main.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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="/lib/jse-theme-dark.css" rel="stylesheet" type="text/css">
<link href="main.css" rel="stylesheet" type="text/css">
</head>
<body class="jse-theme-dark">
<div class="header">
<div class="content">
<span>
<a href="https://github.com/fractalf/json-editor-ex" target="_blank">JSON Editor Extension v2.0.0</a>
</span>
<span>
<label id="switch">
<input id="mode" type="checkbox">
<span class="slider round"></span>
</label>
</span>
<span>
<a href="https://github.com/josdejong/svelte-jsoneditor" target="_blank">Based on JSON Editor Online v0.18.10</a>
</span>
</div>
</div>
<div class="container">
<div id="left"></div>
<div id="right"></div>
</div>
<script type="module" src="init.js"></script>
</body>
</html>