38 lines
1.1 KiB
Plaintext
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" %}
|
|
»
|
|
{% 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>
|
|
»
|
|
{% 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>
|
|
»
|
|
{% endfor %}
|
|
{% endif %}
|
|
<span class="crumb">
|
|
<a href="{{ include.permalink | absolute_url }}">
|
|
{{ include.title }}
|
|
</a>
|
|
</span>
|
|
{% endif %}
|
|
</div>
|