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

27 lines
712 B
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 }}">
{{ site.xaymar.home.name }}
</a>
</span>
{% if include.permalink != "/" and include.permalink != "/index.html" %}
&raquo;
{% if page.categories %}
{% 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>
{% endfor %}
&raquo;
{% endif %}
<span class="crumb">
<a href="{{ include.permalink | absolute_url }}">
{{ include.title }}
</a>
</span>
{% endif %}
</div>