page: prepare static output before dynamic code
[minimedit.git] / page.inc.php
index 39d2008dc88823c799159b8a9c96494ba2a2d84c..bc2c57d5de5df8ad8f92138e234d8d8d2803cab7 100644 (file)
@@ -1,4 +1,6 @@
 <?php
+$body = ob_get_clean();
+
 include_once './head.inc.php';
 
 print "<header>\n";
@@ -13,6 +15,8 @@ $nav = preg_replace_callback('{<a href="([^"]+)">(.*?)</a>}', function ($m) {
 print $nav;
 print "</header>\n\n";
 
+print $body;
+
 register_shutdown_function(function () {
        include 'foot.inc.php';
        print "</body></html>\n";