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 id="content"><?php ob_start(); // Start the outputbuffer page_content(2); // Next call the block $content2=ob_get_contents(); // Now fetch the output into a variable ob_end_clean(); // Clean up old mess and stop buffering // Test $content2 to see if there is something in it. If so, include column wrappers for content1 and content2.if ($content2<>"") { echo "<div id=\"content1\">\n"; page_content(1); echo "\n</div><!-- close div#content1 -->\n"; echo "<div id=\"content2\">\n"; echo $content2; echo "\n</div><!-- close div#content2 -->\n"; }else { // Otherwise, just output content1 page_content(1); }?></div><!-- close div#content -->