28 lines
842 B
Plaintext
28 lines
842 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><%= title %></title>
|
|
</head>
|
|
<body>
|
|
<h1><%= title %></h1>
|
|
<h2>Channel: <%= channel.name %> (<%= channel.youtube_id %>)</h2>
|
|
<h3>Live Streams</h3>
|
|
<% if (liveStreams.length === 0) { %>
|
|
<p>No upcoming live streams found.</p>
|
|
<% } else { %>
|
|
<ul>
|
|
<% liveStreams.forEach(stream => { %>
|
|
<li>
|
|
<strong>Title:</strong> <%= stream.title %><br>
|
|
<strong>Start Time:</strong> <%= new Date(stream.start_time).toLocaleString() %><br>
|
|
<strong>Thumbnail:</strong> <img src="<%= stream.thumbnail_url %>" alt="Thumbnail" width="200">
|
|
</li>
|
|
<% }) %>
|
|
</ul>
|
|
<% } %>
|
|
<a href="/admin/channels">Back to Channel List</a>
|
|
</body>
|
|
</html>
|