| 12345678910111213141516171819202122232425262728293031 |
- {{$head := `<link href="/static/p.css" rel="stylesheet">`}}
- {{template "header.html" $head}}
- <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" 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>
- {{$first := "82KEVKGRAhI"}}
- <script>
- var pid = '{{.Id}}';
- </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>
- {{template "footer.html"}}
|