8 lines
262 B
HTML
8 lines
262 B
HTML
|
{% if page.get_parent and page.get_parent.url %}
|
||
|
{% include "common/breadcrumbs/item.html" with page=page.get_parent %}
|
||
|
{% endif %}
|
||
|
|
||
|
{% if page.id != current.id %}
|
||
|
<li class="breadcrumb-item"><a href="{{ page.url }}">{{ page.title }}</a></li>
|
||
|
{% endif%}
|