1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
wagtail-website-2018-spike/templates/common/breadcrumbs/item.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%}