Try adjusting your search or filters
No channels available.
'; return; } const { showCountry = true, showCategory = true, maxItems } = options; container.innerHTML = ''; const channelsToRender = maxItems ? channels.slice(0, maxItems) : channels; channelsToRender.forEach(c => { const card = document.createElement("a"); card.className = "channel-card"; card.href = "/channel/" + encodeURIComponent(c.slug) + "/"; card.setAttribute("aria-label", "Watch " + c.name); card.dataset.channelId = c.id; card.dataset.channelSlug = c.slug; // Add favorite button if not in favorites view const isFav = isFavorite(c.id); const favIcon = isFav ? '' : ''; card.innerHTML = '" + (showCountry ? escapeHtml(c.country) : '') + (showCountry && showCategory ? ' · ' : '') + (showCategory ? escapeHtml(c.category) : '') + "
" + "" + escapeHtml(c.country) + ' · ' + escapeHtml(c.category) + "
" + "