12 lines
384 B
Plaintext
12 lines
384 B
Plaintext
<% if breadcrumbs? %>
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb small">
|
|
<% breadcrumb_trail do |crumb| %>
|
|
<li class="breadcrumb-item <%= crumb.current? ? "active" : "" %>">
|
|
<%= link_to_unless crumb.current?, crumb.name, crumb.url, (crumb.current? ? {"aria-current" => "page"} : {}) %>
|
|
</li>
|
|
<% end %>
|
|
</ol>
|
|
</nav>
|
|
<% end %>
|