-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 864 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Process Editor</title>
<!-- Deployment trigger -->
</head>
<body>
<div id="app">
<div id="toolbar"></div>
<div id="main-content">
<div id="canvas"></div>
<div id="properties-panel"></div>
</div>
<div id="validation-panel"></div>
<div id="etherisc-logo" style="position: fixed; bottom: 50px; left: 50px; width: 440px; height: 100px; overflow: hidden; pointer-events: none;">
<img src="/2019_Etherisc_Logo.svg" alt="Etherisc" style="width: 440px; height: 100px; display: block;" />
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>