<nav aria-label="Breadcrumb" class="breadcrumbs">
<ol role="list" class="flex space-x-2">
{% for item in items %}
<li>
<div class="flex items-center">
<a href="{{ item.link }}" class="mr-2 text-sm font-medium text-gray-900">{{ item.title }}</a>
{% if loop.last == false %}
<svg aria-hidden="true" class="w-4 h-5 text-gray-300" width="16" height="20" fill="none" viewBox="0 0 24 24" stroke="currentColor" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
</svg>
{% endif %}
</div>
</li>
{% endfor %}
</ol>
</nav>