MVC_Recettes/Views/html.php
2023-01-24 15:35:28 +01:00

14 lines
388 B
PHP

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