lego/templates/breadcrumb.html
2019-09-18 10:28:40 -03:00

8 lines
260 B
HTML

<nav aria-label="breadcrumb">
<ol class="breadcrumb bg-light m-0 small">
{% from "macros/parent.html" import render_parents %}
{{ render_parents(this) }}
<li class="breadcrumb-item active" aria-current="page">{{ this.title }}</li>
</ol>
</nav>