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.
32 lines
1.2 KiB
32 lines
1.2 KiB
<?php
|
|
|
|
use iron\widgets\Menu;
|
|
?>
|
|
<aside class="main-sidebar sidebar-dark-primary elevation-4">
|
|
<a href="index3.html" class="brand-link">
|
|
<img src="/img/logo.jpeg" alt="AdminLTE" class="brand-image img-circle elevation-3"
|
|
style="opacity: .8">
|
|
<span class="brand-text font-weight-light">AdminLTE 3</span>
|
|
</a>
|
|
<!-- sidebar: style can be found in sidebar.less -->
|
|
<section class="sidebar">
|
|
<?php
|
|
echo Menu::widget([
|
|
'items' => [
|
|
['label' => 'MAIN NAVIGATION', 'is_header' => true],
|
|
['label' => 'IndexController', 'url' => '#', 'icon' => 'fa-hand-o-right', 'items' => [
|
|
['label' => 'Index', 'url' => ['site/index', 'tag' => 'new']],
|
|
['label' => 'Test', 'url' => ['site/test']],
|
|
]
|
|
],
|
|
['label' => 'Category', 'url' => '#', 'icon' => 'fa-barcode', 'items' => [
|
|
['label' => 'List', 'url' => ['category/index', 'tag' => 'new']],
|
|
['label' => 'Create', 'url' => ['category/create', 'tag' => 'popular']],
|
|
]
|
|
]
|
|
]
|
|
]);
|
|
?>
|
|
</section>
|
|
<!-- /.sidebar -->
|
|
</aside>
|