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