30 lines
601 B
PHP
Executable File
30 lines
601 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* @Author: fm453
|
|
* @Date: 2019-06-18 15:23:41
|
|
# @Last modified by: fm453
|
|
# @Last modified time: 2021-09-15T11:02:07+08:00
|
|
* @Email: fm453@lukegzs.com
|
|
*/
|
|
|
|
use yii\helpers\Html;
|
|
global $_HI;
|
|
|
|
?>
|
|
<?php $this->beginPage() ?>
|
|
<!DOCTYPE html>
|
|
<html lang="<?= Yii::$app->language ?>">
|
|
<head>
|
|
<meta charset="<?= Yii::$app->charset ?>">
|
|
<?= Html::csrfMetaTags() ?>
|
|
<meta name="renderer" content="webkit">
|
|
<meta http-equiv="Cache-Control" content="no-siteapp" />
|
|
|
|
<?php $this->beginBody() ?>
|
|
<?= $content ?>
|
|
<?php $this->endBody() ?>
|
|
</body>
|
|
</html>
|
|
<?php $this->endPage() ?>
|