Home
{% if breadcrumbs %}
{% for crumb in breadcrumbs %}
/
{{ crumb.name }}
{% endfor %}
{% elif current_path %}
{% set path_parts = current_path.strip('/').split('/') %}
{% for part in path_parts if part %}
/
{% set partial_path = '/' + path_parts[:loop.index]|join('/') %}
{{ part }}
{% endfor %}
{% endif %}
{% endif %}