22 lines
501 B
Plaintext
22 lines
501 B
Plaintext
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3">
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb" id="breadcrumb-id">
|
|
<% breadcrumb.forEach(function(crumb) { %>
|
|
|
|
<li class="breadcrumb-item
|
|
<% if(crumb.stat === 'active') { %>
|
|
|
|
active" aria-current="page"><%- crumb.title%>
|
|
|
|
<% } else {%>
|
|
|
|
"><a href="<%- crumb.url %>"><%- crumb.title%></a>
|
|
|
|
|
|
</li>
|
|
|
|
<% }}) %>
|
|
</ol>
|
|
</nav>
|
|
</div>
|