Files
confirms/app/Views/layouts/main.php
yangsh 735120f1cb
Some checks failed
Close Pull Request / main (pull_request_target) Has been cancelled
new
2025-12-09 17:28:31 +09:00

32 lines
734 B
PHP

<!doctype html>
<html lang="en">
<head>
<?= $this->include('layouts/header') ?>
</head>
<body>
<div class="app-container app-theme-white body-tabs-shadow fixed-sidebar fixed-header">
<?= $this->include('layouts/topbar') ?>
<div class="app-main">
<?= view_cell('\App\Cells\MenuCell::index') ?>
<div class="app-main__outer">
<?= $this->include('layouts/loading-indicator') ?>
<div class="app-main__inner">
<?= $this->renderSection('content') ?>
</div>
<?= $this->include('layouts/footer') ?>
</div>
</div>
</div>
<?= $this->renderSection('modals') ?>
</body>
</html>