-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·42 lines (42 loc) · 1.77 KB
/
Copy pathindex.html
File metadata and controls
executable file
·42 lines (42 loc) · 1.77 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>The name of the app</title>
<!-- Include the stylesheets you need for the Views components -->
<!-- See https://developer.spotify.com/technologies/apps/docs/preview/views/ -->
<link rel="stylesheet" href="$views/css/buttons.css">
<link rel="stylesheet" href="$views/css/image.css">
<link rel="stylesheet" href="$views/css/list.css">
<link rel="stylesheet" href="$views/css/popup.css">
<link rel="stylesheet" href="$views/css/scrollbar.css">
<link rel="stylesheet" href="$views/css/tabbar.css">
<link rel="stylesheet" href="$views/css/throbber.css">
<link rel="stylesheet" href="css/style.css">
<!-- If you are using the preview SDK for webplayer then uncomment the script below -->
<!--script src="http://d1hza3lyffsoht.cloudfront.net/preview-sdk/bootstrap.js"></script-->
</head>
<body>
<div id="top-bar">
<h1 id="track-header"></h1>
<div class="versions-button-wrapper"></div>
</div>
<div id="scroller">
<h3>Scroller</h3>
<a href="#" id="less-scroll">-</a>
<a href="#" id="toggle-scroll">Start</a>
<a href="#" id="more-scroll">+</a>
</div>
<div id="tab-area"></div>
<p id="no-tab-found">No tab was found...</p>
<div id="powered-by">
<strong>Powered by Ultimate-Guitar.com.</strong><br />
Spotitar is in no way affiliated with or has been endorsed by Ultimate-Guitar.com.<br />
The app is built purely as a proof-of-concept and is not intended for use.<br />
Built by Linus Pettersson, www.linuspettersson.net
</div>
<script src="scripts/jquery-2.0.2.min.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>