2026-03-13 10:54:13 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="fr">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>Test Statique</title>
|
2026-03-13 11:03:09 +01:00
|
|
|
<link rel="stylesheet" href="main.css">
|
2026-03-13 10:54:13 +01:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
|
2026-03-20 14:13:09 +01:00
|
|
|
<?php include "header.php"?>
|
2026-03-13 10:54:13 +01:00
|
|
|
|
2026-03-20 11:45:25 +01:00
|
|
|
<div class="main-body">
|
2026-03-27 10:12:59 +01:00
|
|
|
<div class="sidebar">
|
|
|
|
|
<?php include "sidebar.php" ?>
|
|
|
|
|
</div>
|
2026-03-20 11:45:25 +01:00
|
|
|
<div class="content">
|
2026-03-20 14:13:09 +01:00
|
|
|
<?php include "recette.php"?>
|
2026-03-13 11:03:09 +01:00
|
|
|
</div>
|
2026-03-13 10:54:13 +01:00
|
|
|
</div>
|
|
|
|
|
|
2026-03-20 14:13:09 +01:00
|
|
|
<?php include "footer.php"?>
|
2026-03-13 10:54:13 +01:00
|
|
|
</body>
|
|
|
|
|
</html>
|