13 lines
650 B
Text
13 lines
650 B
Text
|
%ul.sidebar-sub-level-items{ class: ('is-fly-out-only' unless sidebar_menu.has_renderable_items?) }
|
||
|
= nav_link(**sidebar_menu.all_active_routes, html_options: { class: 'fly-out-top-item' } ) do
|
||
|
%span.fly-out-top-item-container
|
||
|
%strong.fly-out-top-item-name
|
||
|
= sidebar_menu.title
|
||
|
- if sidebar_menu.has_pill?
|
||
|
%span.badge.badge-pill.count.fly-out-badge{ **sidebar_menu.pill_html_options }
|
||
|
= number_with_delimiter(sidebar_menu.pill_count)
|
||
|
|
||
|
- if sidebar_menu.has_renderable_items?
|
||
|
%li.divider.fly-out-top-item
|
||
|
= render partial: 'shared/nav/sidebar_menu_item', collection: sidebar_menu.renderable_items
|