yii2-netdisk/views/layouts/main.php

65 lines
1.5 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;
/**
* @var $this \yii\base\View
* @var $content string
*/
2013-07-16 10:49:22 +08:00
app\config\AppAsset::register($this);
2013-05-24 22:14:49 +08:00
?>
<?php $this->beginPage(); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="<?=Yii::$app->charset; ?>"/>
<title><?=Html::encode($this->title); ?></title>
2013-05-24 22:14:49 +08:00
<?php $this->head(); ?>
</head>
<body>
<?php $this->beginBody(); ?>
<?php
2013-10-18 20:03:36 +08:00
NavBar::begin([
'brandLabel' => 'My Company',
'brandUrl' => Yii::$app->homeUrl,
2013-10-18 20:03:36 +08:00
'options' => [
'class' => 'navbar-inverse navbar-fixed-top',
2013-10-18 20:03:36 +08:00
],
]);
echo Nav::widget([
'options' => ['class' => 'navbar-nav pull-right'],
'items' => [
['label' => 'Home', 'url' => ['/site/index']],
['label' => 'About', 'url' => ['/site/about']],
['label' => 'Contact', 'url' => ['/site/contact']],
Yii::$app->user->isGuest ?
2013-10-18 20:03:36 +08:00
['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
2013-08-09 09:56:58 +08:00
<div class="container">
<?=Breadcrumbs::widget([
2013-10-18 20:03:36 +08:00
'links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : [],
]); ?>
<?=$content; ?>
2013-05-24 22:14:49 +08:00
</div>
2013-08-09 09:56:58 +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>
2013-08-09 09:56:58 +08:00
</div>
</footer>
2013-05-24 22:14:49 +08:00
<?php $this->endBody(); ?>
2013-05-24 22:14:49 +08:00
</body>
</html>
<?php $this->endPage(); ?>