From: <on...@us...> - 2002-09-18 23:46:41
|
Update of /cvsroot/xoops/xoops-current/html/themes/phpkaox In directory usw-pr-cvs1:/tmp/cvs-serv18990 Modified Files: layout.html Log Message: no message Index: layout.html =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/themes/phpkaox/layout.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** layout.html 24 Aug 2002 23:33:44 -0000 1.1 --- layout.html 18 Sep 2002 23:46:38 -0000 1.2 *************** *** 38,74 **** <td width="20%" bgcolor="#EFEFEF" valign="top"> {foreach item=block from=$xoops_lblocks} ! <table width="100%" border="0" cellspacing="0" cellpadding="2"> <tr> ! <td bgcolor="#E2DBD3"> <b><font color="#666600">{$block.title}</font></b></td> </tr> <tr> ! <td valign="top">{$block.content}</td> </tr> </table> ! <br> ! {/foreach} ! </td> ! <td valign="top"> ! {if $xoops_contents_tpl == ""} {$xoops_contents} - {else} - {include file="file:$xoops_contents_tpldir/$xoops_contents_tpl"} - {/if} </td> {if $xoops_showrblock == 1} <td width="20%" bgcolor="#efefef" valign="top"> {foreach item=block from=$xoops_rblocks} ! <table width="100%" border="0" cellspacing="0" cellpadding="2"> ! <tr> ! <td bgcolor="#E2DBD3"> <b><font color="#666600">{$block.title}</font></b></td> ! </tr> ! <tr> ! <td valign="top">{$block.content}</td> ! </tr> ! </table> <br> {/foreach} </td> {/if} </tr> </table> --- 38,100 ---- <td width="20%" bgcolor="#EFEFEF" valign="top"> {foreach item=block from=$xoops_lblocks} ! {$block} ! <br> ! {/foreach} ! </td> ! <td valign="top"> ! ! <!-- Display center blocks if any --> ! {if $xoops_showcblock == 1} ! ! <table width="100%"> ! ! <!-- Start center-center blocks loop --> ! {foreach item=block from=$xoops_ccblocks} <tr> ! <td width='100%' valign='top'> ! {$block} ! </td> </tr> + {/foreach} + <!-- End center-center blocks loop --> + <tr> ! <td width="50%"> ! ! <!-- Start center-left blocks loop --> ! {foreach item=block from=$xoops_clblocks} ! {$block} ! <br /> ! {/foreach} ! <!-- End center-left blocks loop --> ! ! </td><td width="50%"> ! ! <!-- Start center-right blocks loop --> ! {foreach item=block from=$xoops_crblocks} ! {$block} ! <br /> ! {/foreach} ! <!-- End center-right blocks loop --> ! ! </td> </tr> </table> ! ! {/if} ! <!-- End display center blocks --> ! {$xoops_contents} </td> + {if $xoops_showrblock == 1} <td width="20%" bgcolor="#efefef" valign="top"> {foreach item=block from=$xoops_rblocks} ! {$block} <br> {/foreach} </td> {/if} + </tr> </table> |