Correction : Etape 2
templates/layout.phtml
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Exercice Require</title>
<link rel="stylesheet" href="assets/styles/style.css">
</head>
<body>
<?php
require "templates/partials/_header.phtml";
require "templates/partials/_main.phtml";
require "templates/partials/_footer.phtml";
?>
</body>
</html>
22 November 2025