{{/* Phase 5i Slice B — card view for /tree. Renders the filtered item set as a flat tile grid (no forest, no ancestor-keep). One tile per matched item, ordered by primary path. Reuses the per-item field set the list view emits; the visual difference is layout, not data shape. */}} {{define "tree-card"}}
{{range .CardItems}}
{{.Title}} {{.PrimaryPath}}

{{range .Management}}{{.}}{{end}} {{range .Tags}}{{.}}{{end}} {{if .Pinned}}{{end}} {{if eq .Status "done"}}done{{end}} {{if .Archived}}archived{{end}}

{{else}}
No items match. Try fewer filters or clear all.
{{end}}
{{end}}