Breadcrumbs
The breadcrumbs array has the following attributes:
breadcrumb.url
Returns the relative URL of the page the breadcrumb relates to.
breadcrumb.name
Returns the title/name of page the breadcrumb relates to (e.g. a product or category title/name).
{% for breadcrumb in breadcrumbs %} <li><a href="{{ breadcrumb.url }}">{{ breadcrumb.name }}</a></li> {% endfor %}
returns...
<li><a href="/trainers">Trainers</a></li> <li><a href="/nike-trainers">Nike Trainers</a></li> <li><a href="/nike-trainers-white">White Nike Trainers</a></li>