{# bfx/breadcrumbs.html — Breadcrumb navigation macro #} {% macro breadcrumbs(items, attrs={}) %} {% for item in items %} {% if loop.last %} {{ item.label }} {% else %} {{ item.label }} {% endif %} {% endfor %} {% endmacro %}