MVC_Recettes/Views/html.php
2023-01-12 14:31:06 +01:00

12 lines
330 B
PHP

<!doctype html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>My sweet MVC</title>
</head>
<body>
<?php View::show('common/header'); ?>
<?php echo $A_view['body'] ?>
<?php View::show('common/footer'); ?>
</body>
</html>