22 lines
586 B
PHP
22 lines
586 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
function h($s)
|
|
{
|
|
return htmlspecialchars((string)$s, ENT_QUOTES);
|
|
}
|
|
|
|
function admin_layout($title, $bodyHtml)
|
|
{
|
|
echo "<!doctype html>\n";
|
|
echo "<html lang=\"de\">\n<head>\n";
|
|
echo "<meta charset=\"utf-8\">\n";
|
|
echo "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n";
|
|
echo '<title>' . h($title) . "</title>\n";
|
|
echo "<link rel=\"stylesheet\" href=\"/adminer/adminer.css\">\n";
|
|
echo "</head>\n<body>\n";
|
|
echo "<div class=\"wrap\">\n";
|
|
echo $bodyHtml;
|
|
echo "</div>\n</body>\n</html>";
|
|
}
|