Program Schedule

{{ config().schedule_intro }}

@if (schedule$ | async; as state) { @if (state.loading) {
Loading schedule…
} @else if (state.shows.length === 0) {
No shows scheduled. Check back soon!
} @else {
@for (show of state.shows; track show.id) {
@if (show.show_art_url) { } @else {
}

{{ show.title }}

{{ show.description }}

{{ show.host }} {{ show.genre }}
@for (slot of show.schedules | sortSchedules; track slot.id) { {{ slot.day_label }} {{ slot.time }} }
}
} }