yii2-netdisk/views/layouts/main.php

71 lines
2.1 KiB
PHP
Raw Normal View History

2013-05-24 22:14:49 +08:00
<?php
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;
use app\assets\AppAsset;
2013-05-24 22:14:49 +08:00
/**
2013-11-12 12:24:07 +08:00
* @var \yii\web\View $this
* @var string $content
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>
<html lang="<?= Yii::$app->language ?>">
2013-05-24 22:14:49 +08:00
<head>
2014-03-16 12:46:16 +08:00
<meta charset="<?= Yii::$app->charset ?>"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<?= 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>
2014-01-11 23:41:39 +08:00
2013-11-28 05:19:43 +08:00
<?php $this->beginBody() ?>
2014-03-16 12:46:16 +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']],
Yii::$app->user->isGuest ?
['label' => 'Login', 'url' => ['/site/login']] :
['label' => 'Logout (' . Yii::$app->user->identity->username . ')',
'url' => ['/site/logout'],
'linkOptions' => ['data-method' => 'post']],
],
]);
NavBar::end();
?>
2013-05-24 22:14:49 +08:00
2014-03-16 12:46:16 +08:00
<div class="container">
<?= Breadcrumbs::widget([
'links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : [],
]) ?>
<?= $content ?>
</div>
</div>
2013-05-24 22:14:49 +08:00
2014-03-16 12:46:16 +08:00
<footer class="footer">
<div class="container">
<p class="pull-left">&copy; My Company <?= date('Y') ?></p>
<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() ?>