| 123456789101112131415161718192021222324252627282930 |
- <?php
- use common\helpers\Html;
- use addons\Member\backend\assets\AppAsset;
- AppAsset::register($this);
- ?>
- <?php $this->beginPage() ?>
- <!DOCTYPE html>
- <html lang="<?= Yii::$app->language ?>">
- <head>
- <meta charset="<?= Yii::$app->charset ?>">
- <meta name="keywords" content="">
- <meta name="description" content="">
- <meta name="format-detection" content="telephone=no" />
- <meta name="format-detection" content="address=no" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <?php $this->registerCsrfMetaTags() ?>
- <title><?= Html::encode($this->title) ?></title>
- <?php $this->head() ?>
- </head>
- <body>
- <?php $this->beginBody() ?>
- <?= $content ?>
- <?php $this->endBody() ?>
- </body>
- </html>
- <?php $this->endPage() ?>
|