You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
2.8 KiB

6 years ago
  1. <?php
  2. /* @var $this \yii\web\View */
  3. /* @var $content string */
  4. use kcadmin\assets\AppAsset;
  5. use yii\helpers\Html;
  6. use yii\bootstrap\Nav;
  7. use yii\bootstrap\NavBar;
  8. use yii\widgets\Breadcrumbs;
  9. use common\widgets\Alert;
  10. use yii\bootstrap\Dropdown;
  11. AppAsset::register($this);
  12. ?>
  13. <?php $this->beginPage() ?>
  14. <!DOCTYPE html>
  15. <html lang="<?= Yii::$app->language ?>">
  16. <head>
  17. <meta charset="<?= Yii::$app->charset ?>">
  18. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  19. <meta name="viewport" content="width=device-width, initial-scale=1">
  20. <?php $this->registerCsrfMetaTags() ?>
  21. <title><?= Html::encode($this->title) ?></title>
  22. <?php $this->head() ?>
  23. </head>
  24. <body>
  25. <?php $this->beginBody() ?>
  26. <nav class="navbar">
  27. <div class="navbar-header">
  28. <a href="/"><img alt="branding logo" src="./images/robust-logo-light.png"/></a>
  29. </div>
  30. <div class="navbar-content">
  31. <ul class="navbar-left nav">
  32. <li><a href="#" class="glyphicon glyphicon-menu-hamburger f30"></a></li>
  33. </ul>
  34. <ul class="navbar-right nav">
  35. <li>
  36. <a href="#" data-toggle="dropdown" class="dropdown-toggle f24">
  37. <i class="glyphicon glyphicon-user"></i><?= Yii::$app->user->identity->username ?> <b class="caret"></b>
  38. </a>
  39. <?php
  40. echo Dropdown::widget([
  41. 'items' => [
  42. ['label' => '帐户设置', 'url' => '/user/profile'],
  43. ['label' => '退出', 'url' => '/site/logout'],
  44. ],
  45. ]);
  46. ?>
  47. </li>
  48. <li><a href="#" class="glyphicon glyphicon-envelope f20"></a></li>
  49. </ul>
  50. </div>
  51. </nav>
  52. <div class="sidebar">
  53. <div class="sidebar-content">
  54. <ul class="">
  55. <li class="sidebar-item">
  56. <a href="#" class="sidebar-item-title">Dashboard</a>
  57. <ul class="sidebar-item-list">
  58. <li>sasa</li>
  59. <li>dola</li>
  60. </ul>
  61. </li>
  62. <li class="sidebar-item">
  63. <a href="#" class="sidebar-item-title">项目</a>
  64. <ul class="sidebar-item-list">
  65. <li>sasa</li>
  66. <li>dola</li>
  67. </ul>
  68. </li>
  69. </ul>
  70. </div>
  71. </div>
  72. <?= $content ?>
  73. <?php $this->endBody() ?>
  74. </body>
  75. </html>
  76. <?php $this->endPage() ?>