login/pass: error messages below page title
[minimedit.git] / page.inc.php
index 39d2008dc88823c799159b8a9c96494ba2a2d84c..23a7106c1d470e1705d6d830a263b8802c84c5d0 100644 (file)
@@ -1,10 +1,20 @@
 <?php
-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
@@ -14,7 +24,9 @@ print $nav;
 print "</header>\n\n";
 
 register_shutdown_function(function () {
-       include 'foot.inc.php';
+       print '<footer>';
+       @include 'footer.inc.html';
+       print "</footer>\n";
        print "</body></html>\n";
 });