Files
com.xaymar.www/_includes/breadcrumbs.liquid
T

38 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-12-24 11:00:43 +01:00
<div class="breadcrumbs">
<span class="crumb">
<a href="{{ site.url | absolute_url }}">
2021-12-25 08:35:40 +01:00
{{ site.xaymar.info.home }}
2021-12-24 11:00:43 +01:00
</a>
</span>
{% if include.permalink != "/" and include.permalink != "/index.html" %}
&raquo;
2022-01-12 21:08:07 +01:00
{% if page.collection and page.collection != "posts" %}
2022-01-12 07:21:58 +01:00
{% 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 %}
2021-12-28 19:43:39 +01:00
{% assign cnt=page.categories | size %}
{% if cnt > 0 %}
2021-12-24 11:00:43 +01:00
{% 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>
2022-01-12 07:21:58 +01:00
&raquo;
2021-12-24 11:00:43 +01:00
{% endfor %}
{% endif %}
<span class="crumb">
<a href="{{ include.permalink | absolute_url }}">
{{ include.title }}
</a>
</span>
{% endif %}
</div>