feat(website): add /categories/built-in/ page for Built-in tag filter

Register Built-in as a navigable filter path alongside regular category
and group slugs, emit the page during build, add it to the sitemap, and
wire the Built-in tag buttons in index.html and category.html to navigate
there via data-url.

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Vinta Chen
2026-05-03 08:35:55 +08:00
parent d64b47b910
commit 70a8255289
3 changed files with 44 additions and 3 deletions
+5 -1
View File
@@ -176,7 +176,11 @@
</button>
{% endif %}
{% if entry.source_type == 'Built-in' %}
<button class="tag tag-source" data-value="Built-in">
<button
class="tag tag-source{% if '/categories/built-in/' == current_path %} active{% endif %}"
data-value="Built-in"
data-url="/categories/built-in/"
>
Built-in
</button>
{% endif %}