progress: javascript to post image uploads
[minimedit.git] / page.inc.php
index 4cc693942f09a1659d0c20a2ec58c196265e7f13..6ffd9cc6321cd0c05c07d8669137b61c9633068a 100644 (file)
@@ -1,31 +1,34 @@
 <?php
-$body = ob_get_clean();
-
-include_once './head.inc.php';
+include_once 'head.inc.php';
 
 print "<header>\n";
+$menu = new ArchiveArticle('menu.inc.html');
 ob_start();
-include './menu.html';
-$nav = ob_get_clean();
+if ($User and property_exists($User, 'login') and $User->login) {
+       print '<div class="login"><p>';
+       printf('<span title="ingelogd">%s <a href="%s">%s</a></span>',
+               '<span class="icon icon-user">&#x1F464;</span>',
+               '/login', $User->login
+       );
+       print "</p></div>\n";
+}
+$menu->place['login'] = ob_get_clean();
+$nav = $menu->render();
+
 $nav = preg_replace_callback('{<a href="([^"]+)">(.*?)</a>}', function ($m) {
        $request = $_SERVER['REQUEST_URI'];
        $html = $request == $m[1] ? $m[2] : $m[0]; # text or full link
        return $m[1] == substr($request, 0, strlen($m[1])) ? "<b>$html</b>" : $html;
 }, $nav);
-if (isset($User)) {
-       $nav = preg_replace('{\s*<li class="logout">.*?</li>}', '', $nav);
-       $nav = str_replace('[[login]]', $User['name'], $nav);
-}
-else {
-       $nav = preg_replace('{\s*<li class="login">.*?</li>}', '', $nav);
-}
 print $nav;
 print "</header>\n\n";
 
-print $body;
+print $Page->render();
 
 register_shutdown_function(function () {
-       include 'foot.inc.php';
+       print '<footer>';
+       @include 'footer.inc.html';
+       print "</footer>\n";
        print "</body></html>\n";
 });