diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-24 03:15:05 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-24 03:15:05 +0000 |
commit | ae70bce26c2f39da93c85a082602d58dcf13652e (patch) | |
tree | 0bf530733d44216846ad39f245bc238baf174cee /index.php | |
parent | cb12b4a8c948d901f6851a7eae032827b423704d (diff) | |
download | ampache-ae70bce26c2f39da93c85a082602d58dcf13652e.tar.gz ampache-ae70bce26c2f39da93c85a082602d58dcf13652e.tar.bz2 ampache-ae70bce26c2f39da93c85a082602d58dcf13652e.zip |
more updates to the theme stuff
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -45,20 +45,21 @@ if (conf('refresh_limit') > 5) { } ?> -<div id="nowplaying" style="margin-left:25px;"> +<div id="nowplaying"> <?php show_now_playing(); ?> </div> <!-- Close Now Playing Div --> <!-- Big Daddy Table --> +<?php show_box_top(); ?> <table id="bigdaddy"> <tr> <td valign="top"> <table border="0"><!-- Left table --> <tr> - <td valign="top" align="right"> <!-- sigger: why is it a problem to set width=50% --> + <td valign="top"> <?php show_local_catalog_info(); ?> </td> - <td valign="top" align="left"> <!-- sigger: why is it a problem to set width=50% --> + <td valign="top"> <?php if ($items = get_global_popular('album')) { show_info_box(_('Most Popular Albums'), 'album',$items); @@ -69,14 +70,14 @@ if (conf('refresh_limit') > 5) { <tr><td colspan="2"> </td></tr> <tr><td colspan="2"> </td></tr> <tr> - <td valign="top" align="right"> + <td valign="top"> <?php if ($items = get_global_popular('artist')) { show_info_box(_('Most Popular Artists'), 'artist', $items); } ?> </td> - <td valign="top" align="left"> + <td valign="top"> <?php if ($items = get_global_popular('song')) { show_info_box(_('Most Popular Songs'), 'song', $items); @@ -86,14 +87,14 @@ if (conf('refresh_limit') > 5) { </tr> <tr><td colspan="2"> </td></tr> <tr> - <td valign="top" align="right"> + <td valign="top"> <?php if ($items = get_newest('artist')) { show_info_box(_('Newest Artist Additions'), '', $items); } ?> </td> - <td valign="top" align="left"> + <td valign="top"> <?php if ($items = get_newest('album')) { show_info_box(_('Newest Album Additions'), '', $items); @@ -105,5 +106,6 @@ if (conf('refresh_limit') > 5) { </td> </tr> </table> +<?php show_box_bottom(); ?> <!-- End Big Daddy Table --> <?php show_footer(); ?> |