| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /**
- * Author: lf
- * Blog: https://blog.feehi.com
- * Email: job@feehi.com
- * Created at: 2017-03-15 21:16
- */
- /* @var $this yii\web\View */
- /* @var $content string */
- use backend\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">
- <meta name="renderer" content="webkit">
- <?= Html::csrfMetaTags() ?>
- <title><?= Html::encode($this->title) ?></title>
- <?php $this->head() ?>
- <?= $this->render("/widgets/_language-js") ?>
- </head>
- <body class="gray-bg">
- <?php $this->beginBody() ?>
- <div class="wrapper wrapper-content">
- <?= $this->render('/widgets/_flash') ?>
- <?= $content ?>
- </div>
- <?php $this->endBody() ?>
- </body>
- </html>
- <?php $this->endPage() ?>
|