${
this.isSearching
? html`
Searching...
`
: this.results.length === 0
? this.showWaitlistForm
? html`
`
: html`
No classes found matching "${this.searchQuery}"
Can't find your class? Request it to be added.
`
: html`
${this.results.map(
(cls) => html`
`,
)}
`
}