blob: ac47d5ae67b384464f4143cea859ad1a46e53ae0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<ol class="bl" id="breadcrumbs" itemscope itemtype="http://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><a itemprop="item" href="/"><span itemprop="name">Home</span></a> →
<meta itemprop="position" content="1" />
</li>
{% for crumb in breadcrumbs %}<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
{% if crumb_url %}
<a href="{{crumb_url}}" itemprop="item"><span itemprop="name">{{crumb}}</span></a>
<meta itemprop="position" content="{{ forloop.counter|add:"+1" }}" />{% else %}
<span itemprop="item">
<span itemprop="name">{{crumb}}</span>
</span>{% endif %}
<meta itemprop="position" content="2" />
</li>{%endfor%}
</ol>
|