page: wrap menu in header container
[minimedit.git] / head.inc.php
1 <?php
2 include_once 'head.inc.html';
3
4 print "<header>\n";
5 include 'menu.html';
6 print "</header>\n\n";
7
8 print '<div class="article">'."\n\n";
9
10 include_once 'auth.inc.php';
11
12 register_shutdown_function(function () {
13         print "</div>\n\n";
14         include 'foot.inc.php';
15         print "</body></html>\n";
16 });
17
18 include "$Page.html";
19 if (file_exists("$Page.php")) include_once("$Page.php");
20