forked from sozi-projects/Sozi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-electron.html
43 lines (40 loc) · 1.52 KB
/
index-electron.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
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Sozi</title>
<link rel="stylesheet" href="node_modules/@fortawesome/fontawesome-free/css/all.min.css">
<link rel="stylesheet" href="css/sozi.editor.view.css">
<link rel="stylesheet" href="css/sozi.editor.view.Properties.css">
<link rel="stylesheet" href="css/sozi.editor.view.Preview.css">
<link rel="stylesheet" href="css/sozi.editor.view.Timeline.css">
<link rel="stylesheet" href="css/sozi.editor.view.Toolbar.css">
<script defer>
process.env.NODE_ENV = "production";
require("./js/editor.js");
</script>
</head>
<body>
<div class="top">
<div class="left">
<div id="sozi-editor-view-preview">
<ul></ul>
</div>
</div>
<div class="vsplitter"></div>
<div id="sozi-editor-view-properties" class="right"></div>
</div>
<div class="hsplitter"></div>
<div class="bottom">
<div id="sozi-editor-view-toolbar"></div>
<div id="sozi-editor-view-timeline"> </div>
</div>
<div id="message">
<div class="title"></div>
<div class="body"></div>
</div>
</body>
</html>