|
|
@ -13,7 +13,7 @@ AppAsset::register($this); |
|
|
|
<?php $this->beginPage() ?>
|
|
|
|
<!DOCTYPE html> |
|
|
|
<html lang="<?= Yii::$app->language ?>"> |
|
|
|
<head> |
|
|
|
<head> |
|
|
|
<meta charset="<?= Yii::$app->charset ?>"> |
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
|
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> |
|
|
@ -27,16 +27,20 @@ AppAsset::register($this); |
|
|
|
<script src="https://cdn.jsdelivr.net/npm/vue"></script> |
|
|
|
<?php } ?>
|
|
|
|
<?php $this->head() ?>
|
|
|
|
</head> |
|
|
|
<body class="hold-transition skin-blue-light sidebar-mini"> |
|
|
|
<?php $this->beginBody() ?>
|
|
|
|
<div class="wrapper"> |
|
|
|
</head> |
|
|
|
<body class="hold-transition skin-blue-light sidebar-mini"> |
|
|
|
<?php $this->beginBody() ?>
|
|
|
|
<div class="wrapper"> |
|
|
|
<?= $this->render('header') ?>
|
|
|
|
|
|
|
|
<?= $this->render('sidebar') ?>
|
|
|
|
|
|
|
|
<div class="content-wrapper"> |
|
|
|
<?php |
|
|
|
if (Yii::$app->session->hasFlash('error') || Yii::$app->session->hasFlash('success')) { |
|
|
|
echo Alert::widget(); |
|
|
|
} |
|
|
|
?>
|
|
|
|
<div class="content"> |
|
|
|
<section class="content-header"> |
|
|
|
<?= $this->render('breadcrumb') ?>
|
|
|
|
</section> |
|
|
@ -45,8 +49,9 @@ AppAsset::register($this); |
|
|
|
</section> |
|
|
|
</div> |
|
|
|
|
|
|
|
</div> |
|
|
|
<?php $this->endBody() ?>
|
|
|
|
</body> |
|
|
|
<?= $this->render('footer') ?>
|
|
|
|
</div> |
|
|
|
<?php $this->endBody() ?>
|
|
|
|
</body> |
|
|
|
</html> |
|
|
|
<?php $this->endPage() ?>
|