-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (45 loc) · 1.07 KB
/
index.html
File metadata and controls
53 lines (45 loc) · 1.07 KB
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
52
53
<!DOCTYPE html>
<html>
<head>
<title>JumpFm</title>
<link rel="stylesheet"
href="css/index.css">
<link rel="stylesheet"
href="font-awesome.min.css">
<script src="js/main.js"></script>
</head>
<body>
<div id="app"
v-bind:style="{ fontSize: fontSize + 'px' }">
<!-- DIALOG -->
<div id='dialog'>
<div id='dialog-content'>
<div id='dialog-left'>
<div id='dialog-label'></div>
</div>
<div id='dialog-right'>
<input id="dialog-input"
type="text" />
<ol id='dialog-sug'
class='border'>
<li v-for="(sug, i) in dialog.sug"
:cur="i == dialog.cur"
v-html="sug.html" />
</ol>
</div>
</div>
</div>
<!-- /DIALOG -->
<!-- PANELS -->
<div id='panels'></div>
<!-- /PANELS -->
<!-- STATUS BAR -->
<footer id="statusbar">
<!-- MSGS -->
<div id="statusbar-msgs"></div>
<!-- BUTTONS -->
<div id="statusbar-buttons"></div>
</footer>
<!-- /STATUS BAR -->
</div>
</body>