05844d8b47
This fixes the breadcrumb titles not having links. This was a regression in the updated breadcrumbs introduced in 10.0. This introduces the link for all pages rather than selectively doing it. This will cover issues, merge requests, pipelines, jobs etc. Closes #38059
20 lines
907 B
Text
20 lines
907 B
Text
- container = @no_breadcrumb_container ? 'container-fluid' : container_class
|
|
- hide_top_links = @hide_top_links || false
|
|
|
|
%nav.breadcrumbs{ role: "navigation", class: [container, @content_class] }
|
|
.breadcrumbs-container
|
|
- if defined?(@left_sidebar)
|
|
= button_tag class: 'toggle-mobile-nav', type: 'button' do
|
|
%span.sr-only Open sidebar
|
|
= icon ('bars')
|
|
.breadcrumbs-links.js-title-container
|
|
%ul.list-unstyled.breadcrumbs-list.js-breadcrumbs-list
|
|
- unless hide_top_links
|
|
= header_title
|
|
- if @breadcrumbs_extra_links
|
|
- @breadcrumbs_extra_links.each do |extra|
|
|
= breadcrumb_list_item link_to(extra[:text], extra[:link])
|
|
= render "layouts/nav/breadcrumbs/collapsed_dropdown", location: :after
|
|
%li
|
|
%h2.breadcrumbs-sub-title= link_to @breadcrumb_title, breadcrumb_title_link
|
|
= yield :header_content
|