12 lines
266 B
PHP
12 lines
266 B
PHP
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title><?= htmlspecialchars($title) ?></title>
|
|
<link rel="stylesheet" href="/build/app.css">
|
|
<script src="/build/app.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<?= $content ?>
|
|
</body>
|
|
</html>
|