forked from chordlove/chordlove
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (109 loc) · 4.55 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>alpha.chordlove.com</title>
<script src="//use.edgefonts.net/neuton-cursive:n4:all.js"></script>
<link href="style.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap.no-icons.min.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/font-awesome/3.0.2/css/font-awesome.css" rel="stylesheet">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="jquery.ba-hashchange.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/js/bootstrap.min.js"></script>
<script type="text/javascript" src="inject.min.js"></script>
<script type="text/javascript">
Inject.setModuleRoot( "modules" );
if ( window.location.hostname == "localhost" )
{
Inject.setExpires( -1 );
}
else
{
Inject.setExpires( 180 );
}
require.run( "main" );
</script>
<script type="text/javascript" src="modules/pluginlist.js"></script>
</head>
<body>
<div id="help" class="modal hide fade" tabindex="-1">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Chordlove</h3>
</div>
<div class="modal-body">
<p>Chordlove is a tool that lets you write down the chords of your songs and share them with your friends.</br></br>Chordlove doesn't save your work in a file or database, instead the whole song is stored in the URL. To save your song, just bookmark it!</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
</div>
</div>
<div class="navbar">
<div class="navbar-inner">
<div id="cpanel" class="btn-toolbar">
<span id="tools">
<span class="btn-group always-visible">
<button type="button" title="Edit mode" id="edit" class="btn">
<i class="icon-edit"></i>
</button>
</span>
<span class="btn-group">
<button id="add-chord" class="btn" title="Add chord">
<i class="icon-music"></i>
</button>
</span>
<span class="btn-group NIY">
<button id="key-up" class="btn" title="Change key upwards">
<i class="icon-arrow-up"></i>
</button>
<button id="key-down" class="btn" title="Change key downwards">
<i class="icon-arrow-down"></i>
</button>
</span>
<span id="sharpflat" class="btn-group NIY" data-toggle="buttons-radio">
<button type="button" title="Use flats" id="flat" class="btn active chord-font">♭</button>
<button type="button" title="Use sharps" id="sharp" class="btn chord-font">♯</button>
</span>
<span id="copypaste" class="btn-group">
<button id="cut" class="btn" title="Cut">
<i class="icon-cut"></i>
</button>
<button id="copy" class="btn" title="Copy">
<i class="icon-copy"></i>
</button>
<button id="paste" class="btn" title="Paste">
<i class="icon-paste"></i>
</button>
<button id="delete" class="btn" title="Delete">
<i class="icon-remove"></i>
</button>
</span>
<span class="btn-group">
<a href="#" id="clear-btn" role="button" class="btn" title="Clear all"><i class="icon-trash"></i></a>
</span>
<span class="btn-group">
<button id="save" class="btn" title="Update link">
<i class="icon-save"></i>
</button>
</span>
<span id="link" class="btn-group"></span>
<span class="btn-group always-visible">
<a href="#help" id="help-btn" role="button" class="btn" data-toggle="modal"><i class="icon-info-sign"></i></a>
</span>
</span>
</div>
</div>
</div>
<h1>
<input type="text" id="title" title="Add a title" placeholder="Song title …" />
</h1>
<ol id="items"></ol>
<div id="footer" class="ui-widget ui-corner-all">
<a href="http://alpha.chordlove.com/">alpha.chordlove.com</a> source: <a href="https://github.com/nawroth/chords">github.com/nawroth/chords</a>
by <a href="https://twitter.com/nawroth">@nawroth</a> released under <a
href="http://www.gnu.org/licenses/agpl-3.0.html">AGPL v3</a>.
</div>
</body>
</html>