Files
LesRecettesDePapis/index.php

22 lines
499 B
PHP
Raw Normal View History

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>
<?php include "header.html"?>
2026-03-20 11:45:25 +01:00
<div class="main-body">
<div class="sidebar"> une sidebar</div>
<div class="content">
2026-03-13 11:03:09 +01:00
<?php include "recette.html"?>
</div>
2026-03-13 10:54:13 +01:00
</div>
<?php include "footer.html"?>
</body>
</html>