summaryrefslogtreecommitdiff
path: root/app/views/shared/nav/_sidebar.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/shared/nav/_sidebar.html.haml')
-rw-r--r--app/views/shared/nav/_sidebar.html.haml14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/views/shared/nav/_sidebar.html.haml b/app/views/shared/nav/_sidebar.html.haml
new file mode 100644
index 00000000000..1c06fc9eebf
--- /dev/null
+++ b/app/views/shared/nav/_sidebar.html.haml
@@ -0,0 +1,14 @@
+%aside.nav-sidebar{ class: ('sidebar-collapsed-desktop' if collapsed_sidebar?), **sidebar_tracking_attributes_by_object(sidebar.container), 'aria-label': sidebar.aria_label }
+ .nav-sidebar-inner-scroll
+ - if sidebar.scope_menu
+ = render partial: 'shared/nav/scope_menu', object: sidebar.scope_menu
+ - elsif sidebar.render_raw_scope_menu_partial
+ = render sidebar.render_raw_scope_menu_partial
+
+ %ul.sidebar-top-level-items.qa-project-sidebar
+ - if sidebar.renderable_menus.any?
+ = render partial: 'shared/nav/sidebar_menu', collection: sidebar.renderable_menus
+ - if sidebar.render_raw_menus_partial
+ = render sidebar.render_raw_menus_partial
+
+ = render 'shared/sidebar_toggle_button'