10 lines
173 B
PHP
10 lines
173 B
PHP
|
<!DOCTYPE html>
|
||
|
<html lang="fr">
|
||
|
<?php require 'head.php'; ?>
|
||
|
<body>
|
||
|
<?php require 'nav.php'; ?>
|
||
|
<?= $content; ?>
|
||
|
<?php require 'footer.php'; ?>
|
||
|
</body>
|
||
|
|
||
|
</html>
|