WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
<?php if (!empty page_content(2)) { ?> <div id="content_top1"> <table cellpadding="0" cellspacing="0" class="moduletable"> <tr> <th valign="top"> Popular News </th> </tr> <tr> <td> <ul class="mostread"> <li class="mostread"> <?php page_content(2); ?> </li> </ul> </td> </tr> </table> </div> <?php } ?>
<!-- start content top 1. --> <!-- added by Michael Cook to check for block content before dispalying --> <div id="content_top1"> <?php ob_start(); echo page_content(2); $content2 = ob_get_contents(); ob_end_clean(); if ($content2<>"") { ?> <table cellpadding="0" cellspacing="0" class="moduletable"> <tr> <th valign="top"> Popular News </th> </tr> <tr> <td> <ul class="mostread"> <li class="mostread"> <?php page_content(2); ?> </li> </ul> </td> </tr> </table> </div> <?php } ?> <!-- end content top 1 -->pre]