59 lines
2.3 KiB
PHP
59 lines
2.3 KiB
PHP
<?php
|
|
#
|
|
# @Author: fm453
|
|
# @Date: 2024/7/17
|
|
# @updated: 上午11:43
|
|
# @Email: 1280880631@qq.com
|
|
|
|
/* @var $this \yii\web\View */
|
|
/* @var $content string */
|
|
|
|
use yii\helpers\Html;
|
|
use yii\helpers\Url;
|
|
|
|
$keywords = '';
|
|
$description = '';
|
|
?>
|
|
<?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>
|
|
|
|
<meta name="renderer" content="webkit">
|
|
<meta http-equiv="Cache-Control" content="no-siteapp" />
|
|
<meta name="keywords" content="<?php echo $keywords ?>">
|
|
<meta name="description" content="<?php echo $description ?>">
|
|
<!--[if lt IE 9]>
|
|
<meta http-equiv="refresh" content="0;ie.html" />
|
|
<![endif]-->
|
|
<link rel="shortcut icon" href="<?=Url::to('@web/favicon.ico');?>">
|
|
|
|
|
|
<?=Html::cssFile('@web/css/font-awesome.css?v=4.4.0')?>
|
|
|
|
|
|
<!-- 基础样式-->
|
|
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css">-->
|
|
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css">-->
|
|
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-table@1.23.1/dist/bootstrap-table.min.css">-->
|
|
<!-- 基础样式-->
|
|
<!-- 基础JS-->
|
|
<!-- <script src="https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script>-->
|
|
<!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>-->
|
|
<!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap-table@1.23.1/dist/bootstrap-table.min.js"></script>-->
|
|
<!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap-table@1.23.1/dist/bootstrap-table-locale-all.min.js"></script>-->
|
|
<!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap-table@1.23.1/dist/locale/bootstrap-table-zh-CN.min.js"></script>-->
|
|
<!-- 基础JS-->
|
|
</head>
|
|
<body class="fixed-sidebar full-height-layout gray-bg animated">
|
|
<?php $this->beginBody() ?>
|
|
<?= $content ?>
|
|
<?php $this->endBody() ?>
|
|
|
|
</body>
|
|
</html>
|
|
<?php $this->endPage() ?>
|