| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- use yii\bootstrap\Nav;
- use yii\bootstrap\NavBar;
- use yii\helpers\Html;
- use yii\widgets\Menu;
- use yii\widgets\Breadcrumbs;
- /**
- * @var $this \yii\base\View
- * @var $content string
- */
- app\config\AppAsset::register($this);
- ?>
- <?php $this->beginPage(); ?>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8"/>
- <title><?php echo Html::encode($this->title); ?></title>
- <?php $this->head(); ?>
- </head>
- <body>
- <?php $this->beginBody(); ?>
- <?php
- NavBar::begin(array(
- 'brandLabel' => 'My Company',
- 'brandUrl' => Yii::$app->homeUrl,
- 'options' => array(
- 'class' => 'navbar-inverse navbar-fixed-top',
- ),
- ));
- echo Menu::widget(array(
- 'options' => array('class' => 'nav navbar-nav pull-right'),
- 'items' => array(
- array('label' => 'Home', 'url' => array('/site/index')),
- array('label' => 'About', 'url' => array('/site/about')),
- array('label' => 'Contact', 'url' => array('/site/contact')),
- Yii::$app->user->isGuest ?
- array('label' => 'Login', 'url' => array('/site/login')) :
- array('label' => 'Logout (' . Yii::$app->user->identity->username .')' , 'url' => array('/site/logout')),
- )));
- NavBar::end();
- ?>
- <div class="container">
- <?php echo Breadcrumbs::widget(array(
- 'links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : array(),
- )); ?>
- <?php echo $content; ?>
- </div>
- <footer class="footer">
- <div class="container">
- <p class="pull-left">© My Company <?php echo date('Y'); ?></p>
- <p class="pull-right"><?php echo Yii::powered(); ?></p>
- </div>
- </footer>
- <?php $this->endBody(); ?>
- </body>
- </html>
- <?php $this->endPage(); ?>
|