| 206 |
aurelien |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/** Inclusion du fichier principal de l'application*/
|
|
|
4 |
require_once 'rendu.php';
|
|
|
5 |
?>
|
|
|
6 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
|
7 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
8 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
|
|
9 |
<head>
|
|
|
10 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
11 |
<meta http-equiv="Content-language" content="fr" />
|
|
|
12 |
<?= Liens::renvoyerStylesInclus() ?>
|
|
|
13 |
<?= Liens::renvoyerScriptsInclus() ?>
|
|
|
14 |
</head>
|
|
|
15 |
<body>
|
|
|
16 |
<?= AppControleur::getContenuCorps(); ?>
|
|
|
17 |
</body>
|
|
|
18 |
</html>
|