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.
educoder/app/views/shared/_breadcrumb.html.erb

13 lines
468 B

<% if @_breadcrumbs.present? %>
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<% @_breadcrumbs&.each_with_index do |item, index| %>
<% if item.url.present? && index != @_breadcrumbs.size - 1 %>
<li class="breadcrumb-item"><%= link_to item.text, item.url %></li>
<% else %>
<li class="breadcrumb-item active" aria-current="page"><%= item.text %></li>
<% end %>
<% end %>
</ol>
</nav>
<% end %>