<%= title %>
Channel: <%= channel.name %> (<%= channel.youtube_id %>)
Live Streams
<% if (liveStreams.length === 0) { %>
No upcoming live streams found.
<% } else { %>
<% liveStreams.forEach(stream => { %>
-
Title: <%= stream.title %>
Start Time: <%= new Date(stream.start_time).toLocaleString() %>
Thumbnail:
<% }) %>
<% } %>
Back to Channel List