15 lines
304 B
PHP
15 lines
304 B
PHP
|
<!doctype html>
|
||
|
<html lang="fr">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<base href="<?= $root ?>" >
|
||
|
<link rel="stylesheet" href="Content/myStyle.css" />
|
||
|
<title><?= $title ?></title>
|
||
|
<?= $headScript ?>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="content">
|
||
|
<?= $content ?>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|