32 lines
734 B
PHP
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>
|