-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
51 lines (39 loc) · 1.39 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
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Chromatone app beta</title>
<link href="css/styles.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/buefy.min.css" />
<link rel="stylesheet" href="css/Chromatone.css" />
<script defer async src="https://stats.chromatone.center/script.js"
data-website-id="961fb39e-52a4-44be-a26b-372f5a2dd21b"></script>
</head>
<body>
<div id="chromatone">
<div class="row switches">
<div class="row">
<div class="logo level-item is-6 has-text-centered">
<a href="http://www.chromatone.center"><img src="svg/logo.svg" style="min-width:150px"></a>
</div>
<div class="switch-row has-text-centered">
<b-field grouped group-multiline>
<b-radio-button :key="comp" v-for="comp in components" v-model="opened" :native-value="comp">
<span>{{comp}}</span>
</b-radio-button>
</b-field>
</div>
</div>
</div>
<div class="row">
<component :is="opened"></component>
</div>
<div v-if="opened == 'midi-monitor'" class="row">
<midi-bus :channels.sync="channels"></midi-bus>
<midi-monitor :channels="channels"></midi-monitor>
</div>
</div>
<script type="module" src="js/chromatone.js"></script>
</body>
</html>