2013-05-24 22:14:49 +08:00
|
|
|
<?php
|
2015-07-09 17:47:20 +08:00
|
|
|
|
|
|
|
/* @var $this \yii\web\View */
|
|
|
|
/* @var $content string */
|
|
|
|
|
2013-05-24 22:14:49 +08:00
|
|
|
use yii\helpers\Html;
|
2013-08-12 19:17:43 +08:00
|
|
|
use yii\bootstrap\Nav;
|
|
|
|
use yii\bootstrap\NavBar;
|
2013-05-24 22:14:49 +08:00
|
|
|
use yii\widgets\Breadcrumbs;
|
2013-11-14 00:17:05 +08:00
|
|
|
use app\assets\AppAsset;
|
2013-05-24 22:14:49 +08:00
|
|
|
|
2013-11-12 12:24:07 +08:00
|
|
|
AppAsset::register($this);
|
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>
|
2013-11-20 05:33:52 +08:00
|
|
|
<html lang="<?= Yii::$app->language ?>">
|
2013-05-24 22:14:49 +08:00
|
|
|
<head>
|
2015-01-25 02:45:04 +08:00
|
|
|
<meta charset="<?= Yii::$app->charset ?>">
|
2017-03-09 07:19:05 +08:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2014-03-16 12:46:16 +08:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2014-06-13 22:04:48 +08:00
|
|
|
<?= Html::csrfMetaTags() ?>
|
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>
|
|
|
|
<body>
|
2013-11-28 05:19:43 +08:00
|
|
|
<?php $this->beginBody() ?>
|
2015-07-09 17:47:20 +08:00
|
|
|
|
|
|
|
<div class="wrap">
|
|
|
|
<?php
|
|
|
|
NavBar::begin([
|
|
|
|
'brandLabel' => 'My Company',
|
|
|
|
'brandUrl' => Yii::$app->homeUrl,
|
|
|
|
'options' => [
|
|
|
|
'class' => 'navbar-inverse navbar-fixed-top',
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
echo Nav::widget([
|
|
|
|
'options' => ['class' => 'navbar-nav navbar-right'],
|
|
|
|
'items' => [
|
|
|
|
['label' => 'Home', 'url' => ['/site/index']],
|
|
|
|
['label' => 'About', 'url' => ['/site/about']],
|
|
|
|
['label' => 'Contact', 'url' => ['/site/contact']],
|
2015-10-21 06:05:51 +08:00
|
|
|
Yii::$app->user->isGuest ? (
|
|
|
|
['label' => 'Login', 'url' => ['/site/login']]
|
|
|
|
) : (
|
|
|
|
'<li>'
|
2016-10-14 06:13:07 +08:00
|
|
|
. Html::beginForm(['/site/logout'], 'post')
|
2015-10-21 06:05:51 +08:00
|
|
|
. Html::submitButton(
|
|
|
|
'Logout (' . Yii::$app->user->identity->username . ')',
|
2016-10-14 06:13:07 +08:00
|
|
|
['class' => 'btn btn-link logout']
|
2015-10-21 06:05:51 +08:00
|
|
|
)
|
|
|
|
. Html::endForm()
|
|
|
|
. '</li>'
|
|
|
|
)
|
2015-07-09 17:47:20 +08:00
|
|
|
],
|
|
|
|
]);
|
|
|
|
NavBar::end();
|
|
|
|
?>
|
2013-05-24 22:14:49 +08:00
|
|
|
|
2015-07-09 17:47:20 +08:00
|
|
|
<div class="container">
|
|
|
|
<?= Breadcrumbs::widget([
|
|
|
|
'links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : [],
|
|
|
|
]) ?>
|
|
|
|
<?= $content ?>
|
2014-03-16 12:46:16 +08:00
|
|
|
</div>
|
2015-07-09 17:47:20 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<footer class="footer">
|
|
|
|
<div class="container">
|
|
|
|
<p class="pull-left">© My Company <?= date('Y') ?></p>
|
2013-05-24 22:14:49 +08:00
|
|
|
|
2015-07-09 17:47:20 +08:00
|
|
|
<p class="pull-right"><?= Yii::powered() ?></p>
|
|
|
|
</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() ?>
|