branch modified

This commit is contained in:
yangsh
2025-12-02 10:56:57 +09:00
parent b8920315df
commit 9993465da9
39 changed files with 9487 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<!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">
<?= $this->include('layouts/sidebar') ?>
<div class="app-main__outer">
<div class="app-main__inner">
<?= $this->renderSection('content') ?>
</div>
<?= $this->include('layouts/footer') ?>
</div>
</div>
</div>
</body>
</html>