{# Breadcrumb trail from site root down to current page. Walks page.parent_id via the page_ancestors Jinja global (SQL-backed, bragi's Page model has no .parent attribute). Each crumb's URL is produced by url_for_page. ► separators between items. #} {% if page %} {% set crumbs = page_ancestors(page) %} {% endif %}