Files
2025-03-05 14:02:29 +09:00

13 lines
367 B
PHP

<?=$this->include('templates/header.php')?>
<?=$this->renderSection('body')?>
<div class="app">
<div class="wrap d-flex">
<?=$this->include('templates/inc/navbar.php')?>
<?=$this->renderSection('content')?>
</div>
<?=$this->renderSection('modal')?>
</div>
<?=$this->renderSection('script')?>
<?=$this->include('templates/footer.php')?>