Files
LesRecettesDePapis/projetphp/views/base.php

10 lines
179 B
PHP
Raw Normal View History

2026-03-30 16:10:26 +02:00
<?php use App\Infrastructure\View as V; ?>
<?php V::partial( 'header' ); ?>
<div class="main-body">
<?php V::inject( 'content'); ?>
</div>
<?php V::partial( 'footer' ); ?>