Skip to content

Tag Filter in List and Card Views

· 1 min · tag / configuration

The theme implements tag filtering through UI controls in the desktop sidebar and the mobile panel, rather than by creating individual tag pages with dynamic routing.

This approach is intentional. Compared with solutions based on creating tag pages with dynamic routes, the current UI-driven filter is easier to extend across different view components and different data sources.

At the moment, this feature is applied only in:

The shared UI is built around:

If you want to add tag filtering to custom view, you can import DesktopAside and MobileControl into that view component and wire them to your own item-rendering logic.

This makes the feature more flexible than page-per-tag routing, because different views can filter different datasets independently without requiring extra generated routes.