diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2012-02-18 14:31:43 +0100 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2012-02-18 14:31:43 +0100 |
commit | cec08e05eb0da0b6965ddec56522ee4c9045f3bc (patch) | |
tree | b21b83aed37bde32a78e7bd5f91e8a1792e203c7 /static/index.html | |
parent | c797394d45a1ff820b4f4ffc465bc51c00fed7b1 (diff) |
Fixed directory browsing and added player control buttons.
Diffstat (limited to 'static/index.html')
-rw-r--r-- | static/index.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/static/index.html b/static/index.html index 47f7e70..6adf3eb 100644 --- a/static/index.html +++ b/static/index.html @@ -9,10 +9,14 @@ </head> <body> <div id="content"> - <ul id="directory-list"> - </ul> <span id="status"> </span> + <div id="control"> + <a href="javascript:play()"><img src="/static/icons/control_play_blue.png" alt="Play" /></a> + <a href="javascript:pause()"><img src="/static/icons/control_pause_blue.png" alt="Play" /></a> + </div> + <ul id="directory-list"> + </ul> </div> </body> </html> |