summaryrefslogtreecommitdiff
path: root/templates/lib/breadcrumbs.html
blob: 3600997ed9829ac423876c605e42a221cae148b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<nav class="breadcrumbs" itemscope itemtype="http://schema.org/BreadcrumbList">
        <span class="nav-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
            <a href="/" itemprop="name">Home</a>
            <meta itemprop="position" content="1" />
        </span>{% for crumb in breadcrumbs %}{% if crumb_url %}
        <span class="nav-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
            <a href="{{crumb_url}}" itemprop="name">{{crumb}}</a>
            <meta itemprop="position" content="{{ forloop.counter|add:"+1" }}" />
        </span>{% else %}
        <span class="nav-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
            <span itemprop="name">{{crumb}}</span>
            <meta itemprop="position" content="2" />
        </span>{% endif %}{%endfor%}
    </nav>