main.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 install\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. <?= Html::csrfMetaTags() ?>
  21. <title><?= Html::encode($this->title) ?></title>
  22. <?php $this->head() ?>
  23. </head>
  24. <body>
  25. <?php $this->beginBody() ?>
  26. <div class="wrap">
  27. <div class="header">
  28. <h1 class="logo"><?= Yii::$app->name ?> <?= Yii::t('install', "Install guide") ?></h1>
  29. <div class="version"><?= Yii::$app->version ?></div>
  30. </div>
  31. <?= $content ?>
  32. <div class="footer">
  33. &copy; 2015-<?= date('Y') ?> <a href="http://blog.feehi.com" target="_blank">Feehi</a> 飞嗨出品
  34. </div>
  35. </div>
  36. <?php $this->endBody() ?>
  37. </body>
  38. </html>
  39. <?php $this->endPage() ?>