16 lines
340 B
PHP
16 lines
340 B
PHP
<meta charset="UTF-8">
|
|
<?php
|
|
// <head> ... </head>
|
|
|
|
if (!isset($PAGE_TITLE)) {
|
|
http_response_code(500);
|
|
die("\$PAGE_TITLE not set");
|
|
}
|
|
|
|
echo "<title>E949: $PAGE_TITLE</title>\n";
|
|
|
|
require_once("favicon.html");
|
|
|
|
?>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="front/styles/default.css">
|