diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-23 23:28:18 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-23 23:28:18 +0000 |
commit | 34238a29aade796f30911c567eace0e1518eb470 (patch) | |
tree | 4e0125bd53cc2f75f7a0536ea6479ec82e0ac0ce /templates/show_now_playing.inc | |
parent | 1d08ce31caa68f6da292493fa16432163cbbeddd (diff) | |
download | ampache-34238a29aade796f30911c567eace0e1518eb470.tar.gz ampache-34238a29aade796f30911c567eace0e1518eb470.tar.bz2 ampache-34238a29aade796f30911c567eace0e1518eb470.zip |
to keep infamys eyes from bleeding
Diffstat (limited to 'templates/show_now_playing.inc')
-rw-r--r-- | templates/show_now_playing.inc | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/templates/show_now_playing.inc b/templates/show_now_playing.inc index 27b903a5..77f68dea 100644 --- a/templates/show_now_playing.inc +++ b/templates/show_now_playing.inc @@ -29,9 +29,18 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. if (count($results)) { ?> - <div id="np_title"> - <h1><?php echo _('Now Playing'); ?></h1> - </div> +<table class="box" cellspacing="0" cellpadding="0"> +<tr> + <td class="box-left-top"></td> + <td class="box-top"></td> + <td class="box-right-top"></td> +</tr> +<tr> + <td class="box-left" rowspan="2"></td> + <td id="box-title"><?php echo _('Now Playing'); ?></td> + <td class="box-right" rowspan="2"></td> +</tr> +<tr><td style="padding-top:3px;"> <?php foreach ($results as $item) { $song = $item['song']; @@ -45,4 +54,11 @@ foreach ($results as $item) { } // end foreach ?> +</td></tr> +<tr> + <td class="box-left-bottom"></td> + <td class="box-bottom"></td> + <td class="box-right-bottom"></td> +</tr> +</table> <?php } // end if count results ?> |