2019-09-05 13:40:20 +00:00
|
|
|
<nav aria-label="breadcrumb">
|
2020-05-05 02:40:53 +00:00
|
|
|
<ol class="breadcrumb bg-light m-0 small">
|
|
|
|
{% set crumbs = [] %}
|
|
|
|
{% set current = {'crumb': this} %}
|
|
|
|
{% for i in this._path.split("/") %}
|
|
|
|
{% if current.crumb is not none %}
|
|
|
|
{% if crumbs.insert(0, current.crumb) %}{% endif %}
|
|
|
|
{% if current.update({"crumb": current.crumb.parent}) %}{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% for crumb in crumbs %}
|
|
|
|
{% if this._path == crumb._path %}
|
|
|
|
<li class="breadcrumb-item active">{{ crumb.title }}</li>
|
|
|
|
{% else %}
|
|
|
|
<li class="breadcrumb-item" aria-current="page"><a href="{{ crumb|url }}">{{ crumb.title }}</a></li>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</ol>
|
2019-09-05 13:40:20 +00:00
|
|
|
</nav>
|