main.php 911 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2017-03-15 21:16
  7. */
  8. /* @var $this yii\web\View */
  9. /* @var $content string */
  10. use backend\assets\AppAsset;
  11. use yii\helpers\Html;
  12. AppAsset::register($this);
  13. ?>
  14. <?php $this->beginPage() ?>
  15. <!DOCTYPE html>
  16. <html lang="<?= Yii::$app->language ?>">
  17. <head>
  18. <meta charset="<?= Yii::$app->charset ?>">
  19. <meta name="viewport" content="width=device-width, initial-scale=1">
  20. <meta name="renderer" content="webkit">
  21. <?= Html::csrfMetaTags() ?>
  22. <title><?= Html::encode($this->title) ?></title>
  23. <?php $this->head() ?>
  24. <?= $this->render("/widgets/_language-js") ?>
  25. </head>
  26. <body class="gray-bg">
  27. <?php $this->beginBody() ?>
  28. <div class="wrapper wrapper-content">
  29. <?= $this->render('/widgets/_flash') ?>
  30. <?= $content ?>
  31. </div>
  32. <?php $this->endBody() ?>
  33. </body>
  34. </html>
  35. <?php $this->endPage() ?>