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.

31 lines
1.2 KiB

  1. <?php
  2. use iron\widgets\Menu;
  3. ?>
  4. <aside class="main-sidebar sidebar-dark-primary elevation-4">
  5. <a href="index3.html" class="brand-link">
  6. <img src="/img/logo.jpeg" alt="AdminLTE" class="brand-image img-circle elevation-3"
  7. style="opacity: .8">
  8. <span class="brand-text font-weight-light">AdminLTE 3</span>
  9. </a>
  10. <!-- sidebar: style can be found in sidebar.less -->
  11. <section class="sidebar">
  12. <?php
  13. echo Menu::widget([
  14. 'items' => [
  15. ['label' => 'MAIN NAVIGATION', 'is_header' => true],
  16. ['label' => 'IndexController', 'url' => '#', 'icon' => 'fa-hand-o-right', 'items' => [
  17. ['label' => 'Index', 'url' => ['site/index', 'tag' => 'new']],
  18. ['label' => 'Test', 'url' => ['site/test']],
  19. ]
  20. ],
  21. ['label' => 'Category', 'url' => '#', 'icon' => 'fa-barcode', 'items' => [
  22. ['label' => 'List', 'url' => ['category/index', 'tag' => 'new']],
  23. ['label' => 'Create', 'url' => ['category/create', 'tag' => 'popular']],
  24. ]
  25. ]
  26. ]
  27. ]);
  28. ?>
  29. </section>
  30. <!-- /.sidebar -->
  31. </aside>