-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
45 lines (45 loc) · 1.79 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Dusa Interpreter</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Learn Datalog, and more, today! Try out the Dusa logic programming language right now in your browser."
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Fira+Mono:wght@500&family=Fira+Sans+Condensed&display=swap"
rel="stylesheet"
/>
<link href="/node_modules/sketchzone/css/reset.css" rel="stylesheet" />
<link href="/node_modules/sketchzone/css/sketchzone.css" rel="stylesheet" />
<link href="/src/web/oksolar.css" rel="stylesheet" />
<link href="/src/web/dusa.css" rel="stylesheet" />
<link rel="icon" href="/dusa-icon.svg" />
<link rel="mask-icon" href="/dusa-icon.svg" color="#007FBC" />
</head>
<body id="body-root">
<main id="main-root">
<div id="sketchzone-config"></div>
<div id="sketchzone-container">
<div id="sketchzone-header">
<div id="sketchzone-tabs"></div>
<div id="sketchzone-logo"></div>
</div>
<div id="sketchzone-active-sketch" class="active-sketch-is-showing-editor">
<div id="sketchzone-codemirror-root"></div>
<div id="sketchzone-divider"></div>
<div id="sketchzone-inspector-root">
<div id="sketchzone-inspector-controller" class="zone1"></div>
<div id="sketchzone-inspector-contents"></div>
</div>
</div>
</div>
</main>
<div id="modal-root"></div>
<script type="module" src="/src/web/main.tsx"></script>
</body>
</html>