23 lines
378 B
PHP
23 lines
378 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title><?php echo $title ?></title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="/assets/stylesheet.css">
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<?php echo $header ?>
|
|
</header>
|
|
<main>
|
|
<?php echo $body ?>
|
|
</main>
|
|
<footer>
|
|
<?php echo $footer ?>
|
|
</footer>
|
|
</body>
|
|
|
|
</html>
|