2013-07-13 21:46:13 +02:00
|
|
|
{% unless page.hide_breadcrumbs == true %}
|
2013-12-14 09:04:09 +01:00
|
|
|
<ol>
|
2013-07-13 21:46:13 +02:00
|
|
|
<li>
|
|
|
|
{% if page.layout == "license" %}
|
|
|
|
<a href="/">Home</a> / <a href="/licenses/">Licenses</a>
|
|
|
|
{% else %}
|
|
|
|
<a href="/">Home</a>
|
|
|
|
{% endif %}
|
|
|
|
</li>
|
|
|
|
</ol>
|
2015-10-24 00:10:21 +02:00
|
|
|
<script type="application/ld+json">
|
|
|
|
{
|
|
|
|
"@context": "http://schema.org",
|
|
|
|
"@type": "BreadcrumbList",
|
|
|
|
"itemListElement": [{
|
|
|
|
"@type": "ListItem",
|
|
|
|
"position": 1,
|
|
|
|
"item": {
|
|
|
|
"@id": "{{ site.github.url }}/",
|
|
|
|
"name": "Home"
|
|
|
|
}
|
|
|
|
},{% if page.layout == "license" %}{
|
|
|
|
"@type": "ListItem",
|
|
|
|
"position": 2,
|
|
|
|
"item": {
|
|
|
|
"@id": "{{ site.github.url }}/licenses",
|
|
|
|
"name": "Licenses"
|
|
|
|
}
|
|
|
|
},{% endif %}{
|
|
|
|
"@type": "ListItem",
|
|
|
|
"position": {% if page.layout == "license" %}3{% else %}2{% endif %},
|
|
|
|
"item": {
|
|
|
|
"@id": "{{ site.github.url }}{{ page.url }}",
|
|
|
|
"name": "{{ page.title }}"
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
{% endunless %}
|