2013-05-24 22:14:49 +08:00
|
|
|
<?php
|
2015-07-09 17:47:20 +08:00
|
|
|
|
2022-01-15 03:47:17 +08:00
|
|
|
/** @var yii\web\View $this */
|
2024-02-09 14:14:45 +08:00
|
|
|
|
2022-01-15 03:47:17 +08:00
|
|
|
/** @var string $content */
|
2015-07-09 17:47:20 +08:00
|
|
|
|
2013-11-14 00:17:05 +08:00
|
|
|
use app\assets\AppAsset;
|
2021-05-19 20:01:06 +08:00
|
|
|
use app\widgets\Alert;
|
2022-06-18 00:15:52 +08:00
|
|
|
use yii\bootstrap5\Breadcrumbs;
|
|
|
|
use yii\bootstrap5\Html;
|
|
|
|
use yii\bootstrap5\Nav;
|
|
|
|
use yii\bootstrap5\NavBar;
|
2013-05-24 22:14:49 +08:00
|
|
|
|
2013-11-12 12:24:07 +08:00
|
|
|
AppAsset::register($this);
|
2022-08-19 05:57:02 +08:00
|
|
|
|
|
|
|
$this->registerCsrfMetaTags();
|
|
|
|
$this->registerMetaTag(['charset' => Yii::$app->charset], 'charset');
|
|
|
|
$this->registerMetaTag(['name' => 'viewport', 'content' => 'width=device-width, initial-scale=1, shrink-to-fit=no']);
|
|
|
|
$this->registerMetaTag(['name' => 'description', 'content' => $this->params['meta_description'] ?? '']);
|
|
|
|
$this->registerMetaTag(['name' => 'keywords', 'content' => $this->params['meta_keywords'] ?? '']);
|
2022-08-24 22:33:32 +08:00
|
|
|
$this->registerLinkTag(['rel' => 'icon', 'type' => 'image/x-icon', 'href' => Yii::getAlias('@web/favicon.ico')]);
|
2013-05-24 22:14:49 +08:00
|
|
|
?>
|
2013-11-28 05:19:43 +08:00
|
|
|
<?php $this->beginPage() ?>
|
2013-05-24 22:14:49 +08:00
|
|
|
<!DOCTYPE html>
|
2021-05-19 20:01:06 +08:00
|
|
|
<html lang="<?= Yii::$app->language ?>" class="h-100">
|
2013-05-24 22:14:49 +08:00
|
|
|
<head>
|
2014-03-16 12:46:16 +08:00
|
|
|
<title><?= Html::encode($this->title) ?></title>
|
|
|
|
<?php $this->head() ?>
|
2013-05-24 22:14:49 +08:00
|
|
|
</head>
|
2021-05-19 20:01:06 +08:00
|
|
|
<body class="d-flex flex-column h-100">
|
2013-11-28 05:19:43 +08:00
|
|
|
<?php $this->beginBody() ?>
|
2015-07-09 17:47:20 +08:00
|
|
|
|
2022-08-19 05:57:02 +08:00
|
|
|
<header id="header">
|
2015-07-09 17:47:20 +08:00
|
|
|
<?php
|
|
|
|
NavBar::begin([
|
2024-02-15 11:08:46 +08:00
|
|
|
'brandLabel' => Yii::$app->name,
|
2015-07-09 17:47:20 +08:00
|
|
|
'brandUrl' => Yii::$app->homeUrl,
|
2022-08-19 05:57:02 +08:00
|
|
|
'options' => ['class' => 'navbar-expand-md navbar-dark bg-dark fixed-top']
|
2015-07-09 17:47:20 +08:00
|
|
|
]);
|
|
|
|
echo Nav::widget([
|
2021-05-19 20:01:06 +08:00
|
|
|
'options' => ['class' => 'navbar-nav'],
|
2015-07-09 17:47:20 +08:00
|
|
|
'items' => [
|
2024-02-10 12:03:11 +08:00
|
|
|
['label' => '首页', 'url' => ['/site/index']],
|
2024-02-10 17:41:07 +08:00
|
|
|
['label' => '我的文件', 'url' => ['/home/index']],
|
2024-02-16 15:13:29 +08:00
|
|
|
['label' => '分享管理', 'url' => ['/share/index']],
|
2024-02-10 12:03:11 +08:00
|
|
|
['label' => '个人设置', 'url' => ['/site/about']],
|
|
|
|
['label' => '系统设置', 'url' => ['/site/contact']],
|
2024-02-10 17:41:07 +08:00
|
|
|
['label' => '应用下载', 'url' => ['/site/contact']],
|
2024-02-10 17:58:40 +08:00
|
|
|
['label' => 'API', 'url' => ['/site/about']],
|
2022-08-19 05:57:02 +08:00
|
|
|
Yii::$app->user->isGuest
|
2024-02-09 14:14:45 +08:00
|
|
|
? ['label' => '登录', 'url' => ['/user/login']]
|
2022-08-19 05:57:02 +08:00
|
|
|
: '<li class="nav-item">'
|
2024-02-09 14:14:45 +08:00
|
|
|
. Html::beginForm(['/user/logout'])
|
|
|
|
. Html::submitButton(
|
|
|
|
'Logout (' . Yii::$app->user->identity->username . ')',
|
|
|
|
['class' => 'nav-link btn btn-link logout']
|
|
|
|
)
|
|
|
|
. Html::endForm()
|
|
|
|
. '</li>'
|
2022-08-19 05:57:02 +08:00
|
|
|
]
|
2015-07-09 17:47:20 +08:00
|
|
|
]);
|
|
|
|
NavBar::end();
|
|
|
|
?>
|
2021-05-19 20:01:06 +08:00
|
|
|
</header>
|
2013-05-24 22:14:49 +08:00
|
|
|
|
2022-08-19 05:57:02 +08:00
|
|
|
<main id="main" class="flex-shrink-0" role="main">
|
2015-07-09 17:47:20 +08:00
|
|
|
<div class="container">
|
2022-08-19 05:57:02 +08:00
|
|
|
<?php if (!empty($this->params['breadcrumbs'])): ?>
|
|
|
|
<?= Breadcrumbs::widget(['links' => $this->params['breadcrumbs']]) ?>
|
|
|
|
<?php endif ?>
|
2017-08-08 18:02:19 +08:00
|
|
|
<?= Alert::widget() ?>
|
2015-07-09 17:47:20 +08:00
|
|
|
<?= $content ?>
|
2014-03-16 12:46:16 +08:00
|
|
|
</div>
|
2021-05-19 20:01:06 +08:00
|
|
|
</main>
|
2015-07-09 17:47:20 +08:00
|
|
|
|
2022-08-19 05:57:02 +08:00
|
|
|
<footer id="footer" class="mt-auto py-3 bg-light">
|
2015-07-09 17:47:20 +08:00
|
|
|
<div class="container">
|
2022-08-19 05:57:02 +08:00
|
|
|
<div class="row text-muted">
|
2024-02-09 14:14:45 +08:00
|
|
|
<div class="col-md-6 text-center text-md-start"><?php echo '© Created & Design by ' . '<a href="https://blog.chenx221.cyou" rel="external">Chenx221</a> | 2024 - ' . date('Y') ?></div>
|
|
|
|
<div class="col-md-6 text-center text-md-end"><?= Yii::t('yii', 'Powered by {yii}', [
|
2024-02-16 13:59:54 +08:00
|
|
|
'yii' => '<a href="https://www.yiiframework.com/" rel="external">' . Yii::t('yii',
|
2024-02-09 14:14:45 +08:00
|
|
|
'Yii Framework') . '</a>',
|
|
|
|
]) ?></div>
|
2022-08-19 05:57:02 +08:00
|
|
|
</div>
|
2015-07-09 17:47:20 +08:00
|
|
|
</div>
|
|
|
|
</footer>
|
2013-05-24 22:14:49 +08:00
|
|
|
|
2013-11-28 05:19:43 +08:00
|
|
|
<?php $this->endBody() ?>
|
2013-05-24 22:14:49 +08:00
|
|
|
</body>
|
|
|
|
</html>
|
2013-11-28 05:19:43 +08:00
|
|
|
<?php $this->endPage() ?>
|