-
Notifications
You must be signed in to change notification settings - Fork 43
/
index.html
65 lines (61 loc) · 2.89 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<!--
.o. .o8 o8o
.888. "888 `"'
.8"888. oooo oooo .oooo888 oooo .ooooo. .ooooo.
.8' `888. `888 `888 d88' `888 `888 d88' `88b d88' `88b
.88ooo8888. 888 888 888 888 888 888ooo888 888ooo888
.8' `888. 888 888 888 888 888 888 .o 888 .o
o88o o8888o `V88V"V8P' `Y8bod88P" o888o `Y8bod8P' `Y8bod8P'
-->
<title>Audiee</title>
<meta name="description" content="Simple experimental web based audio editor.">
<meta name="author" content="Jan Myler">
<link rel="author" href="humans.txt">
<link rel="shortcut icon" href="favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet/less" href="less/style.less">
<script src="js/libs/less-1.2.2.js"></script>
<!-- Use SimpLESS (Win/Linux/Mac) or LESS.app (Mac) to compile your .less files
to style.css, and replace the 2 lines above by this one: -->
<!-- <link rel="stylesheet" href="css/style.css"> -->
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<div class="pull-left editable" id="project-name"></div>
<div class="btn-toolbar" id="playback-controls">
<input type="text" id="time-display" value="-:--:--.---">
<button class="btn" id="play" title="play"><i class="icon-play"></i></button>
<button class="btn" id="stop" title="stop" ><i class="icon-stop"></i></button>
<button class="btn following" id="follow" title="toggle follow"><i class="icon-eye-open"></i><i class="icon-eye-close"></i></button>
</div>
</div>
<div class="app-name">Audiee</div>
</div>
</div>
<div class="menubar menubar-fixed" id="menu-view">
<ul class="nav nav-pills"></ul>
</div>
<div id="app-frame" class="container-fluid">
<div class="row-fluid">
<div class="span12" id="editor-view">
<div class="inner">
<div id="time-line"></div>
<div id="tracks"></div>
</div>
</div> <!-- /div#editor-view -->
</div>
</div> <!-- /div#app-frame -->
<!-- JavaScript at the bottom for fast page loading -->
<script data-main="js/main" src="js/libs/require/require.js"></script>
</body>
</html>