main.php 1.19 KB
Newer Older
Qiang Xue committed
1 2 3 4 5 6
<?php
use yii\bootstrap\NavBar;
use yii\bootstrap\Nav;
use yii\helpers\Html;

/**
slavcodev committed
7 8
 * @var \yii\web\View $this
 * @var string $content
Qiang Xue committed
9 10 11 12 13 14 15 16
 */
$asset = yii\gii\GiiAsset::register($this);
?>
<?php $this->beginPage(); ?>
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8"/>
Alexander Makarov committed
17
	<title><?= Html::encode($this->title) ?></title>
Qiang Xue committed
18 19 20 21 22
	<?php $this->head(); ?>
</head>
<body>
<?php $this->beginBody(); ?>
<?php
Alexander Makarov committed
23
NavBar::begin([
Qiang Xue committed
24
	'brandLabel' => Html::img($asset->baseUrl . '/logo.png'),
Alexander Makarov committed
25 26 27 28
	'brandUrl' => ['default/index'],
	'options' => ['class' => 'navbar-inverse navbar-fixed-top'],
]);
echo Nav::widget([
Qiang Xue committed
29
	'options' => ['class' => 'nav navbar-nav navbar-right'],
Alexander Makarov committed
30 31 32 33 34 35
	'items' => [
		['label' => 'Home', 'url' => ['default/index']],
		['label' => 'Help', 'url' => 'http://www.yiiframework.com/doc/guide/topics.gii'],
		['label' => 'Application', 'url' => Yii::$app->homeUrl],
	],
]);
Qiang Xue committed
36 37 38 39
NavBar::end();
?>

<div class="container">
Alexander Makarov committed
40
	<?= $content ?>
Qiang Xue committed
41 42 43 44 45
</div>

<footer class="footer">
	<div class="container">
		<p class="pull-left">A Product of <a href="http://www.yiisoft.com/">Yii Software LLC</a></p>
Alexander Makarov committed
46
		<p class="pull-right"><?= Yii::powered() ?></p>
Qiang Xue committed
47 48 49 50 51 52 53
	</div>
</footer>

<?php $this->endBody(); ?>
</body>
</html>
<?php $this->endPage(); ?>