| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?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 install\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">
- <?= Html::csrfMetaTags() ?>
- <title><?= Html::encode($this->title) ?></title>
- <?php $this->head() ?>
- </head>
- <body>
- <?php $this->beginBody() ?>
- <div class="wrap">
- <div class="header">
- <h1 class="logo"><?= Yii::$app->name ?> <?= Yii::t('install', "Install guide") ?></h1>
- <div class="version"><?= Yii::$app->version ?></div>
- </div>
- <?= $content ?>
- <div class="footer">
- © 2015-<?= date('Y') ?> <a href="http://blog.feehi.com" target="_blank">Feehi</a> 飞嗨出品
- </div>
- </div>
- <?php $this->endBody() ?>
- </body>
- </html>
- <?php $this->endPage() ?>
|