2013-05-24 22:14:49 +08:00
|
|
|
<?php
|
|
|
|
use yii\helpers\Html;
|
|
|
|
use yii\widgets\Menu;
|
|
|
|
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="utf-8"/>
|
|
|
|
<title><?php echo Html::encode($this->title); ?></title>
|
|
|
|
<?php $this->head(); ?>
|
|
|
|
</head>
|
|
|
|
<body>
|
2013-07-08 08:29:19 +08:00
|
|
|
<?php $this->beginBody(); ?>
|
2013-05-24 22:14:49 +08:00
|
|
|
<div class="container">
|
|
|
|
<div class="masthead">
|
2013-08-09 08:00:48 +08:00
|
|
|
<h3 class="text-muted">My Company</h3>
|
2013-05-24 22:14:49 +08:00
|
|
|
|
2013-08-09 08:00:48 +08:00
|
|
|
<?php echo Menu::widget(array(
|
|
|
|
'options' => array('class' => 'nav navbar-nav nav-justified'),
|
|
|
|
'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')),
|
|
|
|
),
|
|
|
|
)); ?>
|
2013-05-24 22:14:49 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php echo Breadcrumbs::widget(array(
|
|
|
|
'links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : array(),
|
|
|
|
)); ?>
|
|
|
|
<?php echo $content; ?>
|
|
|
|
|
|
|
|
<div class="footer">
|
|
|
|
<p>© My Company <?php echo date('Y'); ?></p>
|
|
|
|
<p>
|
|
|
|
<?php echo Yii::powered(); ?>
|
|
|
|
Template by <a href="http://twitter.github.io/bootstrap/">Twitter Bootstrap</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2013-07-08 08:29:19 +08:00
|
|
|
<?php $this->endBody(); ?>
|
2013-05-24 22:14:49 +08:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
<?php $this->endPage(); ?>
|