Files
com.xaymar.www/_includes/breadcrumbs.liquid
T
Michael Fabian 'Xaymar' Dirks 88c2832807 🆕Breadcrumbs for Collections
2022-01-12 07:21:58 +01:00

38 lines
1.1 KiB
Plaintext

<div class="breadcrumbs">
<span class="crumb">
<a href="{{ site.url | absolute_url }}">
{{ site.xaymar.info.home }}
</a>
</span>
{% if include.permalink != "/" and include.permalink != "/index.html" %}
&raquo;
{% if page.collection %}
{% assign entry=page.collection %}
{% assign collection=entry | slugify: site.xaymar.links.collection.slugify %}
<span class="crumb">
<a href="{{ site.xaymar.links.collection.permalink | replace: ":coll", entry | absolute_url }}">
{{ entry }}
</a>
</span>
&raquo;
{% endif %}
{% assign cnt=page.categories | size %}
{% if cnt > 0 %}
{% for entry in page.categories %}
{% assign category=entry | slugify: site.xaymar.links.category.slugify %}
<span class="crumb">
<a href="{{ site.xaymar.links.category.permalink | replace: ":cat", category | absolute_url }}">
{{ entry }}
</a>
</span>
&raquo;
{% endfor %}
{% endif %}
<span class="crumb">
<a href="{{ include.permalink | absolute_url }}">
{{ include.title }}
</a>
</span>
{% endif %}
</div>