Files
old-holivud2/app/views/application/_breadcrumbs.html.erb
2020-05-31 22:38:19 +02:00

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 %>