@typeparam TItem
@if (ShowFilterPanel && FilterPanel is not null) {
@FilterPanel
} @if (Data is { Count: > 0 }) {
@foreach (var item in PagedItems) {
@CardTemplate(item)
}
@if (ShowPager && Data.Count > PageSize) { } }