feat(website): show parent category breadcrumb on subcategory pages

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Vinta Chen
2026-05-03 00:27:22 +08:00
parent 6bc9d83480
commit 03702231af
2 changed files with 33 additions and 0 deletions
+5
View File
@@ -24,6 +24,11 @@
</nav>
<div class="category-hero-copy">
{% if page_kind == "subcategory" and parent_category %}
<p class="category-breadcrumb">
<a href="/categories/{{ parent_category.slug }}/">{{ parent_category.name }}</a>
</p>
{% endif %}
<h1>{{ category.name }}</h1>
{% if category.description_html %}
<p class="category-subtitle">{{ category.description_html | safe }}</p>