blob: c68072c630a61d16f535d963774f6394e881db04 (
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
|
{{$head := `<link href="/static/p.css" rel="stylesheet">`}}
{{template "header.html" $head}}
<header>
<a href="/">
<img src="/static/audioaxis-white.png" alt="Audio Axis" class="aa">
</a>
<form onsubmit="return search(this.song.value)">
<label for="user">Username:</label>
<input type="text" id="user" value="anonymous" size="16" onkeypress="return userKeyPress(event)">
<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>
<script>
var pid = '{{.Id}}';
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script src="/static/script.js"></script>
{{$youtube := "http://www.youtube.com/e/82KEVKGRAhI?version=3&enablejsapi=1&rel=0&controls=0&disablekb=1&showinfo=0"}}
<object data="{{$youtube}}" id="player" width="1" height="1" type="application/x-shockwave-flash">
<param name="allowScriptAccess" value="always">
</object>
{{template "footer.html"}}
|