- <article class="utility-card">
- <h3><%= title %></h3>
- <% if (!items.length) { %>
- <p class="muted">暂无计划。</p>
- <% } %>
- <div class="timeline">
- <% items.forEach((item) => { %>
- <div class="timeline-item">
- <strong><%= item.date %> 周<%= weekdayLabel(item.weekday) %> <%= item.time %></strong>
- <span><%= actionLabel(item.action) %> · <%= targetLabel(item.target_channel) %> · <%= item.name %></span>
- </div>
- <% }) %>
- </div>
- </article>
|