31 lines
703 B
PHP
31 lines
703 B
PHP
<?php
|
|
use app\assets\AppAsset;
|
|
use yii\helpers\Html;
|
|
|
|
AppAsset::register($this);
|
|
?>
|
|
<?php $this->beginPage() ?>
|
|
<!DOCTYPE html>
|
|
<html lang="<?= Yii::$app->language ?>">
|
|
<head>
|
|
<meta charset="<?= Yii::$app->charset ?>">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<?= Html::csrfMetaTags() ?>
|
|
<title><?= Html::encode($this->title) ?></title>
|
|
<!-- CSS -->
|
|
|
|
<!-- JS -->
|
|
<?php $this->head() ?>
|
|
</head>
|
|
<body>
|
|
<?php $this->beginBody(); ?>
|
|
<?= $this->render('header.php'); ?>
|
|
<?= $content ?>
|
|
<?= $this->render('footer.php'); ?>
|
|
<?php $this->endBody() ?>
|
|
</body>
|
|
</html>
|
|
<?php $this->endPage() ?>
|