12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /* @var $this \yii\web\View */
- /* @var $content string */
- use backend\assets\AppAsset;
- use yii\helpers\Html;
- use yii\helpers\Url;
- //use yii\bootstrap\Nav;
- //use yii\bootstrap\NavBar;
- //use yii\widgets\Breadcrumbs;
- //use common\widgets\Alert;
- AppAsset::register($this);
- $this->title = Yii::$app->params['site_pfg'];
- ?>
- <?php $this->beginPage() ?>
- <!DOCTYPE html>
- <html lang="<?= Yii::$app->language ?>">
- <head>
- <meta charset="<?= Yii::$app->charset ?>">
- <meta name="renderer" content="webkit">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta http-equiv="Access-Control-Allow-Origin" content="*">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="format-detection" content="telephone=no">
- <?= Html::csrfMetaTags() ?>
- <title><?= Html::encode($this->title) ?></title>
- <?php $this->head() ?>
- </head>
- <body class="main_body">
- <?php $this->beginBody() ?>
- <?= $content ?>
- <?php $this->endBody() ?>
- </body>
- </html>
- <?php $this->endPage() ?>
|