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
79 lines
2.8 KiB
<?php
|
|
/* @var $this \yii\web\View */
|
|
/* @var $content string */
|
|
|
|
use kcadmin\assets\AppAsset;
|
|
use yii\helpers\Html;
|
|
use yii\bootstrap\Nav;
|
|
use yii\bootstrap\NavBar;
|
|
use yii\widgets\Breadcrumbs;
|
|
use common\widgets\Alert;
|
|
use yii\bootstrap\Dropdown;
|
|
|
|
AppAsset::register($this);
|
|
?>
|
|
<?php $this->beginPage() ?>
|
|
<!DOCTYPE html>
|
|
<html lang="<?= Yii::$app->language ?>">
|
|
<head>
|
|
<meta charset="<?= Yii::$app->charset ?>">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<?php $this->registerCsrfMetaTags() ?>
|
|
<title><?= Html::encode($this->title) ?></title>
|
|
<?php $this->head() ?>
|
|
</head>
|
|
<body>
|
|
<?php $this->beginBody() ?>
|
|
<nav class="navbar">
|
|
<div class="navbar-header">
|
|
<a href="/"><img alt="branding logo" src="./images/robust-logo-light.png"/></a>
|
|
</div>
|
|
<div class="navbar-content">
|
|
<ul class="navbar-left nav">
|
|
<li><a href="#" class="glyphicon glyphicon-menu-hamburger f30"></a></li>
|
|
</ul>
|
|
<ul class="navbar-right nav">
|
|
<li>
|
|
<a href="#" data-toggle="dropdown" class="dropdown-toggle f24">
|
|
<i class="glyphicon glyphicon-user"></i><?= Yii::$app->user->identity->username ?> <b class="caret"></b>
|
|
</a>
|
|
<?php
|
|
echo Dropdown::widget([
|
|
'items' => [
|
|
['label' => '帐户设置', 'url' => '/user/profile'],
|
|
['label' => '退出', 'url' => '/site/logout'],
|
|
],
|
|
]);
|
|
?>
|
|
</li>
|
|
<li><a href="#" class="glyphicon glyphicon-envelope f20"></a></li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
<div class="sidebar">
|
|
<div class="sidebar-content">
|
|
<ul class="">
|
|
<li class="sidebar-item">
|
|
<a href="#" class="sidebar-item-title">Dashboard</a>
|
|
<ul class="sidebar-item-list">
|
|
<li>sasa</li>
|
|
<li>dola</li>
|
|
</ul>
|
|
</li>
|
|
<li class="sidebar-item">
|
|
<a href="#" class="sidebar-item-title">项目</a>
|
|
<ul class="sidebar-item-list">
|
|
<li>sasa</li>
|
|
<li>dola</li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<?= $content ?>
|
|
|
|
<?php $this->endBody() ?>
|
|
</body>
|
|
</html>
|
|
<?php $this->endPage() ?>
|