@if (suggestions.length > 0) {
{{ 'catalog.suggestionsTitle' | translate }}
@for (item of suggestions; track item.id) { }
} @if (popularSearches.length > 0) {
{{ 'catalog.popularSearchesTitle' | translate }}
@for (item of popularSearches; track $index) { }
} @if (recentSearches.length > 0) {
{{ 'catalog.recentSearchesTitle' | translate }}
@for (item of recentSearches; track $index) { }
} @if (searchHistory.length > 0) {
{{ 'catalog.searchHistoryTitle' | translate }}
@for (item of searchHistory; track $index) { }
} @if (noResults && !loading) {

{{ 'catalog.searchNoResultsHint' | translate }}

}