diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_all_popular.inc.php | 1 | ||||
-rw-r--r-- | templates/show_box.inc.php | 7 | ||||
-rw-r--r-- | templates/show_index.inc.php | 25 |
3 files changed, 17 insertions, 16 deletions
diff --git a/templates/show_all_popular.inc.php b/templates/show_all_popular.inc.php index e9f12a5c..51ace405 100644 --- a/templates/show_all_popular.inc.php +++ b/templates/show_all_popular.inc.php @@ -44,3 +44,4 @@ <?php show_info_box(_('Most Popular Tags'),'tags',$tags); ?> </td> </tr> +<tr><td colspan="2"> </td></tr> diff --git a/templates/show_box.inc.php b/templates/show_box.inc.php index 6be8f960..5f9553c8 100644 --- a/templates/show_box.inc.php +++ b/templates/show_box.inc.php @@ -5,9 +5,8 @@ All rights reserved. This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + modify it under the terms of the GNU General Public License v2 + as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -21,7 +20,7 @@ */ ?> <span class="box-title"><?php echo $title; ?></span> - <ol> + <ol class="box-list"> <?php if (count($items)) { ?> <?php foreach ($items as $item) { diff --git a/templates/show_index.inc.php b/templates/show_index.inc.php index 7591fed0..0522dcb4 100644 --- a/templates/show_index.inc.php +++ b/templates/show_index.inc.php @@ -23,21 +23,22 @@ <?php show_now_playing(); ?> </div> <!-- Close Now Playing Div --> <!-- Recently Played --> -<div id="catalog_info"> - <?php - $data = show_local_catalog_info(); - if (count($data)) { show_local_catalog_info(); } - ?> -</div> -<div id="recently_played"> - <?php - $data = get_recently_played(); - if (count($data)) { require_once(conf('prefix') . '/templates/show_recently_played.inc.php'); } - ?> -</div> <div id="random_selection"> <?php $albums = get_random_albums('6'); if (count($albums)) { require_once(conf('prefix') . '/templates/show_random_albums.inc.php'); } ?> </div> +<div id="recently_played"> + <?php + $data = get_recently_played(); + if (count($data)) { require_once(conf('prefix') . '/templates/show_recently_played.inc.php'); } + ?> +</div> +<div id="catalog_info"> + <?php + $data = show_local_catalog_info(); + if (count($data)) { show_local_catalog_info(); } + ?> +</div> + |