-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (37 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>app</title>
<link rel="stylesheet" href="bundle.css">
</head>
<body>
<app-display-server>
<main role="main" class="main">
<app-sidebar side="left"></app-sidebar>
<section class="main-content">
<app-scene-select></app-scene-select>
<app-config selected="Preview">
<app-config-panel name="MIDI" icon="notes-outline">
<app-midi></app-midi>
</app-config-panel>
<app-config-panel name="Preview" icon="eye-outline">
<app-main-preview>
</app-main-preview>
</app-config-panel>
<app-config-panel name="Audio" icon="volume">
</app-config-panel>
<app-config-panel name="Post-Processing" icon="camera-outline">
</app-config-panel>
<app-config-panel name="Transitions" icon="film">
<app-transition-manager>
</app-transition-manager>
</app-config-panel>
</app-config>
</section>
<app-sidebar side="right"></app-sidebar>
</main>
</app-display-server>
<script type="text/javascript" src="index.js"></script>
</body>
</html>