Output the breadcrumb text
Output the full rendered breadcrumb HTML using the template under Settings -> Site Settings -> Breadcrumb Trail
{{ _page.breadcrumb() }}
You can also specify which position to start in the breadcrumb trail and where to end.
The start value specifies which position to start at. 1 is the first value, 2 is the second breadcrumb value and so on.
Output the breadcrumb HTML but skip the first one.
{{ _page.breadcrumb({start: 2}) }}
The max value can be used to set the maximum number of breadcrumb items to output.
{{ _page.breadcrumb({max: 3}) }}
You can combine the start and max values.
{{ _page.breadcrumb({start: 1, max: 2}) }}
You can also output just the breadcrumb text for the current page.
{{ _page.breadcrumbText }}