我有这个 jekyll 代码,但它并不理想。目前,如果您访问具有其结构的页面,example.com/careers/job-postings/
则结果很好,例如主页/职业/职位发布。但如果你回到职业生涯,那就是主页/职业/职业。每个人都有最后一个孩子作为非链接。我怎样才能摆脱冗余或普遍改进这种逻辑?(我从其他地方获取了大部分代码。)
<div class="breadcrumbs">
<div class="wrap">
{% capture url_parts %} {{ page.url | remove: "/index.html" | replace:'/'," " }}{% endcapture %}
{% capture num_parts %}{{ url_parts | number_of_words | minus: 0 }}{% endcapture %}
{% assign previous="" %}
<ol>
{% if num_parts == "0" or num_parts == "-1" %}
<li><a href="/">home</a> </li>
{% else %}
<li><a href="/">home</a></li>
{% for unused in page.content limit:num_parts %}
{% capture first_word %}{{ url_parts | truncatewords:1 | remove:"..."}}{% endcapture %}
{% capture previous %}{{ previous }}/{{ first_word }}{% endcapture %}
<li><a href="{{previous}}">{{ first_word }}</a></li>
{% capture url_parts %}{{ url_parts | remove_first:first_word }}{% endcapture %}
{% endfor %}
{% endif %}
{% unless page.title == first_word %}
<li>{{ page.title }}</li>
{% endunless %}
</ol>
</div>