1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-12-19 14:14:17 +00:00

fix: missing "/" at the end of URLs for categories and tags in breadcrumb (#1495)

This commit is contained in:
Cotes Chung
2024-01-19 06:19:20 +08:00
committed by GitHub
parent 4facf5b390
commit 02e296ed75

View File

@@ -17,7 +17,7 @@
{% if forloop.first %} {% if forloop.first %}
<span> <span>
<a href="{{ '/' | relative_url }}"> <a href="{{ '/' | relative_url }}">
{{ site.data.locales[include.lang].tabs.home | capitalize }} {{- site.data.locales[include.lang].tabs.home | capitalize -}}
</a> </a>
</span> </span>
@@ -30,8 +30,8 @@
{% elsif page.layout == 'category' or page.layout == 'tag' %} {% elsif page.layout == 'category' or page.layout == 'tag' %}
<span> <span>
<a href="{{ item | relative_url }}"> <a href="{{ item | append: '/' | relative_url }}">
{{ site.data.locales[include.lang].tabs[item] | default: page.title }} {{- site.data.locales[include.lang].tabs[item] | default: page.title -}}
</a> </a>
</span> </span>
{% endif %} {% endif %}