<% Object.keys(groupedSchedules).forEach(date => { %>
<%= dayjs(date).tz("Asia/Tokyo").format("YYYY年MM月DD日 (ddd)") %>
<% groupedSchedules[date].forEach(schedule => { %> <% const timeDifference = dayjs(schedule.start_time).diff(dayjs(), 'minute'); const isLive = timeDifference < 5 && timeDifference >= -60; // 配信開始5時間前~1時間後 %> <% }) %>
<% }) %>