-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (27 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>TwitterTracks</title>
<link rel="stylesheet" href="sp://import/css/adam.css">
<link rel="stylesheet" href="sp://import/css/shared.css">
<link rel="stylesheet" href="sp://import/css/core-dark.css">
<link rel="stylesheet" href="sp://import/css/api.css">
<link rel="stylesheet" href="style.css">
<script src="jquery-1.7.1.min.js"></script>
<script src="async.js"></script>
<script type="text/javascript">
$(document).ready(function(){
sp = getSpotifyApi(1);
sp.require('main').init();
});
</script>
</head>
<body>
<div id="header">
<h1>TwitterTracks</h1>
<p>TwitterTracks used the Twitter API to find spotify links. Tracks and Albums are added (no Playlists) when available in your country. The list updates every 10 seconds. You can find the <a href="https://github.com/aronwoost/TwitterTracks" target="_blank">source code on GitHub</a>. <a href="https://github.com/aronwoost/TwitterTracks/issues" target="_blank">Please give feedback</a>!</p>
</div>
<div id="content"></div>
</body>
</html>