main.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\Menu;
  4. use yii\widgets\Breadcrumbs;
  5. /**
  6. * @var $this \yii\base\View
  7. * @var $content string
  8. */
  9. $this->registerAssetBundle('app');
  10. ?>
  11. <?php $this->beginPage(); ?>
  12. <!DOCTYPE html>
  13. <html lang="en">
  14. <head>
  15. <meta charset="utf-8"/>
  16. <title><?php echo Html::encode($this->title); ?></title>
  17. <?php $this->head(); ?>
  18. </head>
  19. <body>
  20. <div class="container">
  21. <?php $this->beginBody(); ?>
  22. <div class="masthead">
  23. <h3 class="muted">My Company</h3>
  24. <div class="navbar">
  25. <div class="navbar-inner">
  26. <div class="container">
  27. <?php echo Menu::widget(array(
  28. 'options' => array('class' => 'nav'),
  29. 'items' => array(
  30. array('label' => 'Home', 'url' => array('/site/index')),
  31. array('label' => 'About', 'url' => array('/site/about')),
  32. array('label' => 'Contact', 'url' => array('/site/contact')),
  33. Yii::$app->user->isGuest ?
  34. array('label' => 'Login', 'url' => array('/site/login')) :
  35. array('label' => 'Logout (' . Yii::$app->user->identity->username .')' , 'url' => array('/site/logout')),
  36. ),
  37. )); ?>
  38. </div>
  39. </div>
  40. </div>
  41. <!-- /.navbar -->
  42. </div>
  43. <?php echo Breadcrumbs::widget(array(
  44. 'links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : array(),
  45. )); ?>
  46. <?php echo $content; ?>
  47. <hr>
  48. <div class="footer">
  49. <p>&copy; My Company <?php echo date('Y'); ?></p>
  50. <p>
  51. <?php echo Yii::powered(); ?>
  52. Template by <a href="http://twitter.github.io/bootstrap/">Twitter Bootstrap</a>
  53. </p>
  54. </div>
  55. <?php $this->endBody(); ?>
  56. </div>
  57. </body>
  58. </html>
  59. <?php $this->endPage(); ?>