blob: 79971c11fcbe656f5c96ef5bbce2c346e4bd55c0 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Audio Axis</title>
<!--
<link href='http://fonts.googleapis.com/css?family=Cantarell' rel='stylesheet'>
-->
<link href="/static/cantarell.css" rel="stylesheet">
<link href="/static/base.css" rel="stylesheet">
</head>
<body>
<header>
<img src="/static/audioaxis-white.png" alt="Audio Axis" class="aa">
<form onsubmit="return search(this.song.value)">
<label for="user">Username:</label>
<input type="text" id="user" value="anonymous" size="16">
<br>
<label for="song">Add a song:</label>
<input type="text" id="song" autocomplete="off">
<input type="submit" value="Search">
</form>
<div id="results" onblur="$(this).slideUp()"><ul>
</ul></div>
</header>
<article>
</article>
{{$first := "82KEVKGRAhI"}}
<script>
var pid = '{{.Id}}';
</script>
<script src="/static/jquery.min.js"></script>
<!--
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
-->
<script src="/static/script.js"></script>
<object data="http://www.youtube.com/v/{{$first}}?version=3&enablejsapi=1" id="player" width="1" height="1" type="application/x-shockwave-flash">
<param name="movie" value="http://www.youtube.com/v/{{$first}}?version=3&enablejsapi=1">
<param name="allowScriptAccess" value="always">
<embed src="http://www.youtube.com/v/{{$first}}?version=3&enablejsapi=1" allowScriptAccess="always">
</object>
</body>
</html>
|