| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- echo "<?php\n";
- ?>
- use common\helpers\Html;
- use addons\<?= $model->name;?>\<?= $appID ?>\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() ?>
|