10 lines
179 B
PHP
10 lines
179 B
PHP
<?php use App\Infrastructure\View as V; ?>
|
|
|
|
<?php V::partial( 'header' ); ?>
|
|
|
|
<div class="main-body">
|
|
<?php V::inject( 'content'); ?>
|
|
</div>
|
|
|
|
<?php V::partial( 'footer' ); ?>
|