diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-23 22:08:39 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-23 22:08:39 +0000 |
commit | f18efa3eac538882820591919b5874e99ddcf412 (patch) | |
tree | f2dc1626579fd7fe32f3e276acac0f985756d3b1 /templates/show_box.inc.php | |
parent | f94268ca1b35ca9b169ed51c0b5688a080cb8691 (diff) | |
download | ampache-f18efa3eac538882820591919b5874e99ddcf412.tar.gz ampache-f18efa3eac538882820591919b5874e99ddcf412.tar.bz2 ampache-f18efa3eac538882820591919b5874e99ddcf412.zip |
wupis
Diffstat (limited to 'templates/show_box.inc.php')
-rw-r--r-- | templates/show_box.inc.php | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/templates/show_box.inc.php b/templates/show_box.inc.php new file mode 100644 index 00000000..324912c9 --- /dev/null +++ b/templates/show_box.inc.php @@ -0,0 +1,50 @@ +<?php +/* + + Copyright (c) 2001 - 2006 Ampache.org + 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. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ +?> +<table class="border" 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 background="<?php echo conf('web_path'); ?>/images/ampache-light-bg.gif" bgcolor="#c0c0c0"><?php echo $title; ?></td> + <td class="box-right" rowspan="2"></td> +</tr> +<tr> + <td class="even"> + <ol> + <?php + foreach ($items as $item) { + echo $item; + } + ?> + </ol> + </td> +</tr> +<tr> + <td class="box-left-bottom"></td> + <td class="box-bottom"></td> + <td class="box-right-bottom"></td> +</tr> +</table> |