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
<div class="content"> <?php page_content(1); ?> </div> <div class="bottomleft"> <?php page_content(2); ?> </div> <div class="bottomright"> <?php page_content(3); ?> </div>
<!-- This routine checks for content in content area two before rendering the containers --> <?php ob_start(); // Start the outputbufferpage_content(2); // Next call the block$content2=ob_get_contents(); // Now fetch the output into a variableob_end_clean(); // Clean up old mess and stop buffering?> <?php if ($content2<>"") { // Next test $content2 to see if there is something in it echo "<div class=\"bottomleft\">\n"; echo $content2; echo "\n</div><!-- close div#bottomleft-->\n";}?>